This commit is contained in:
Ronaldson Bellande 2024-10-14 14:11:48 -04:00
parent 262acaa433
commit 85b9a573a1
2 changed files with 29 additions and 7 deletions

View File

@ -20,22 +20,25 @@ glob = "0.3.1"
tempfile = "3.3.0" tempfile = "3.3.0"
shellexpand = "3.1.0" shellexpand = "3.1.0"
meval = "0.2.0" meval = "0.2.0"
reqwest = "0.11" reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = "1.0" serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
thiserror = "1.0" thiserror = "1.0"
anyhow = "1.0" anyhow = "1.0"
clap = "4.0" clap = { version = "4.0", features = ["derive"] }
regex = "1.7" regex = "1.7"
lazy_static = "1.4" lazy_static = "1.4"
log = "0.4" log = "0.4"
env_logger = "0.10" env_logger = "0.10"
tokio = "1.0"
async-trait = "0.1" async-trait = "0.1"
futures = "0.3" futures = "0.3"
chrono = "0.4" chrono = "0.4"
rand = "0.8" rand = "0.8"
openssl = "0.10" rustls = "0.20"
hyper = { version = "0.14", default-features = false, features = ["http1", "http2", "client", "tcp"] }
tokio = { version = "1.0", features = ["full"] }
hyper-rustls = "0.24"
rustls-native-certs = "0.6"
[dev-dependencies] [dev-dependencies]
assert_cmd = "2.0" assert_cmd = "2.0"

View File

@ -3,18 +3,37 @@ tempfile: "3.3.0"
shellexpand: "3.1.0" shellexpand: "3.1.0"
meval: "0.2.0" meval: "0.2.0"
reqwest: "0.11" reqwest: "0.11"
default-features: false
features:
- json
- rustls-tls
serde: "1.0" serde: "1.0"
features:
- derive
serde_json: "1.0" serde_json: "1.0"
thiserror: "1.0" thiserror: "1.0"
anyhow: "1.0" anyhow: "1.0"
clap: "4.0" clap: "4.0"
features:
- derive
regex: "1.7" regex: "1.7"
lazy_static: "1.4" lazy_static: "1.4"
log: "0.4" log: "0.4"
env_logger: "0.10" env_logger: "0.10"
tokio: "1.0"
async-trait: "0.1" async-trait: "0.1"
futures: "0.3" futures: "0.3"
chrono: "0.4" chrono: "0.4"
rand: "0.8" rand: "0.8"
openssl: "0.10" rustls: "0.20"
hyper: "0.14"
default-features: false
features:
- http1
- http2
- client
- tcp
tokio: "1.0"
features:
- full
hyper-rustls: "0.24"
rustls-native-certs: "0.6"