forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (25 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
26 lines (25 loc) · 766 Bytes
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
[package]
name = "buildsys"
version = "0.1.0"
authors = ["Ben Cressey <bcressey@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"]
[dependencies]
bottlerocket-variant = { version = "0.1", path = "../../sources/bottlerocket-variant" }
duct = "0.13"
hex = "0.4"
lazy_static = "1"
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
serde = { version = "1", features = ["derive"] }
serde_plain = "1"
sha2 = "0.10"
snafu = "0.7"
toml = "0.5"
url = { version = "2", features = ["serde"] }
walkdir = "2"
nonzero_ext = "0.3"