-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
52 lines (45 loc) · 1.14 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
45
46
47
48
49
50
51
52
[package]
name = "envio"
version = "0.6.1"
rust-version = "1.75.0"
description = "A Modern And Secure CLI Tool For Managing Environment Variables"
edition = "2021"
authors = ["Humble Penguin <[email protected]>"]
repository = "https://github.com/humblepenguinn/envio/"
license = "MIT/Apache-2.0"
readme = "README.md"
[lib]
name = "envio"
path = "src/lib.rs"
doctest = false
[dependencies]
age = "0.9.1"
bincode = "1.3.3"
chrono = { version = "0.4.33", features = ["serde"] }
clap = { version = "4.3.24", features = ["derive"] }
colored = "2.0.0"
comfy-table = "6.1.4"
dirs = "5.0.0"
indicatif = "0.17.3"
inquire = { version = "0.7.0", features = ["date"] }
semver = "1.0.17"
serde = { version = "1.0.159", features = ["derive"] }
typetag = "0.2"
regex = "1.7"
tokio = "1.28.0"
url = "2.3.1"
thiserror = "1.0.58"
color-eyre = "0.6.3"
[target.'cfg(unix)'.dependencies]
gpgme = "0.11"
[dependencies.reqwest]
version = "0.11.16"
default-features = false
features = ["rustls-tls-native-roots"]
[build-dependencies]
chrono = "0.4.33"
clap = { version = "4.1.8", features = ["derive"] }
clap_mangen = "0.2.9"
clap_complete = "4.5.1"
[profile.release]
lto = true