forked from godaddy/awsenc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.04 KB
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
[package]
name = "awsenc-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
[[bin]]
name = "awsenc"
path = "src/main.rs"
[lints]
workspace = true
[dependencies]
awsenc-core = { path = "../awsenc-core" }
enclaveapp-core = { workspace = true }
enclaveapp-app-storage = { workspace = true }
enclaveapp-wsl = { workspace = true }
clap = { version = "4", features = ["derive", "env", "string"] }
clap_complete = "4"
tokio = { version = "1", features = ["full"] }
crossterm = "0.27"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
dirs = "5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
zeroize = { version = "1", features = ["derive"] }
rpassword = "7"
regex = "1"
[target.'cfg(target_os = "windows")'.build-dependencies]
winresource = "0.1"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
toml = "0.8"
enclaveapp-app-storage = { workspace = true, features = ["mock"] }