forked from bottlerocket-os/bottlerocket-core-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 823 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
[package]
name = "logdog"
version = "0.1.0"
authors = ["Matt Briggs <[email protected]>"]
license = "Apache-2.0 OR MIT"
edition = "2021"
publish = false
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]
[dependencies]
flate2 = "1"
glob = "0.3"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "rustls-tls-native-roots"] }
serde_json = "1"
shell-words = "1"
snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] }
tar = { version = "0.4", default-features = false }
tempfile = { version = "3", default-features = false }
tokio = { version = "~1.32", default-features = false, features = ["macros", "rt-multi-thread"] } # LTS
url = "2"
walkdir = "2"
[build-dependencies]
generate-readme = { version = "0.1", path = "../generate-readme" }