-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 973 Bytes
/
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
[package]
name = "trunks-cli"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
license.workspace = true
rust-version.workspace = true
publish.workspace = true
[[bin]]
name = "trunks"
path = "src/main.rs"
[dependencies]
trunks = { path = "../lib" }
async-trait = { workspace = true }
clap = { workspace = true, features = ["default", "derive", "env" ]}
duration-string = { workspace = true }
eyre = { workspace = true, features = ["default"]}
futures = { workspace = true }
hyper = { workspace = true, features = ["client", "http1", "http2", "runtime", "stream"]}
hyper-rustls = { workspace = true, features = ["http1", "http2", "logging", "native-tokio", "tls12"]}
tokio = { workspace = true, features = ["fs", "io-util", "io-std"]}
num_cpus = { workspace = true }