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
44 lines (40 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.43 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
42
43
44
[package]
name = "storewolf"
version = "0.1.0"
authors = ["Zac Mrowicki <mrowicki@amazon.com>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
publish = false
build = "build.rs"
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]
[dependencies]
constants = { path = "../../constants", version = "0.1.0" }
bottlerocket-release = { path = "../../bottlerocket-release", version = "0.1.0" }
datastore = { path = "../datastore", version = "0.1.0" }
log = "0.4"
models = { path = "../../models", version = "0.1.0" }
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
semver = "1.0"
simplelog = "0.12"
snafu = "0.7"
toml = "0.5"
[build-dependencies]
bottlerocket-variant = { version = "0.1", path = "../../bottlerocket-variant" }
generate-readme = { version = "0.1", path = "../../generate-readme" }
merge-toml = { path = "merge-toml", version = "0.1.0" }
# We have a models build-dep because we read default settings from the models
# directory and need its build.rs to run first; we also reflect the dependency
# with cargo:rerun-if-changed statements in our build.rs. The models build.rs
# runs twice, once for the above dependency and once for this build-dependency,
# so it's important that it remains reentrant.
models = { path = "../../models", version = "0.1.0" }
snafu = "0.7"
toml = "0.5"
walkdir = "2"
[[bin]]
name = "storewolf"
path = "src/main.rs"
[lib]
name = "storewolf"
path = "src/lib.rs"