-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.13 KB
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "dynasty"
version = "0.1.0"
authors = { workspace = true }
edition = "2021"
repository = { workspace = true }
license = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.package]
authors = ["Zakhary Kaplan <[email protected]"]
repository = "https://github.com/kaplanz/dynasty"
license = "MIT OR Apache-2.0"
[dependencies]
advise = "0.1.0"
anstream = "0.6.9"
anstyle = "1.0.4"
anyhow = "1.0.79"
async-compat = "0.2.3"
clap = { version = "4.5.0", features = ["cargo", "derive", "env", "wrap_help"] }
clap-verbosity-flag = "2.1.2"
dirs = "5.0.1"
duration-str = "0.7.1"
env_logger = "0.10.2"
futures = "0.3.30"
log = "0.4.20"
reqwest = { version = "0.11.23", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
shlex = "1.2.0"
smol = "2.0.0"
strum = { version = "0.25.0", features = ["derive"] }
sysexits = "0.7.11"
thiserror = "1.0.56"
toml = "0.8.8"
url = "2.5.0"
xdir = "0.1.0"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"