forked from bottlerocket-os/bottlerocket-core-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 898 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
28
29
30
[package]
name = "logdog"
version = "0.1.0"
authors = ["Matt Briggs <brigmatt@amazon.com>"]
license = "Apache-2.0 OR MIT"
edition = "2021"
publish = false
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]
[features]
fips = ["rustls/fips", "aws-lc-rs/fips"]
[dependencies]
aws-lc-rs = { workspace = true, features = ["bindgen"] }
flate2 = { workspace = true, features = ["default"] }
glob.workspace = true
reqwest = { workspace = true, features = ["blocking", "rustls-tls-native-roots"] }
rustls.workspace = true
serde_json.workspace = true
shell-words.workspace = true
snafu = { workspace = true, features = ["backtraces-impl-backtrace-crate"] }
tar.workspace = true
tempfile.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
url.workspace = true
walkdir.workspace = true
[build-dependencies]
generate-readme.workspace = true