forked from ArmchairDevelopers/Maxima
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 829 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "maxima-cli"
version = "0.1.0"
authors = ["Sean Kahler <sean@battleda.sh>"]
edition = "2021"
[dependencies]
maxima-lib = { path = "../maxima-lib" }
clap = { version = "4.3.5", features = [ "derive" ] }
tokio = { version = "1.28.2", features = [ "full", "rt", "rt-multi-thread", "time", "net" ] }
serde = { version = "1.0.164", features = [ "derive" ] }
serde_json = "1.0.97"
anyhow = "1.0.71"
lazy_static = "1.4.0"
base64 = "0.21.2"
log = "0.4.19"
regex = "1.8.4"
inquire = "0.6.2"
futures = "0.3.30"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = [ "memoryapi", "handleapi", "synchapi", "wincon", "consoleapi" ] }
winreg = "0.50.0"
is_elevated = "0.1.2"
[build-dependencies]
maxima-resources = { path = "../maxima-resources" }
[[bin]]
name = "maxima-cli"
path = "src/main.rs"