forked from bottlerocket-os/bottlerocket-core-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 789 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
31
32
33
34
35
[package]
name = "storewolf"
version = "0.1.0"
authors = ["Zac Mrowicki <[email protected]>"]
license = "Apache-2.0 OR MIT"
edition = "2021"
publish = false
build = "build.rs"
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]
[dependencies]
constants.workspace = true
bottlerocket-release.workspace = true
datastore.workspace = true
log.workspace = true
models.workspace = true
rand = { workspace = true, features = ["std", "std_rng"] }
semver.workspace = true
serde_json.workspace = true
simplelog.workspace = true
snafu.workspace = true
toml.workspace = true
bottlerocket-modeled-types.workspace = true
[build-dependencies]
generate-readme.workspace = true
[[bin]]
name = "storewolf"
path = "src/main.rs"
[lib]
name = "storewolf"
path = "src/lib.rs"