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.16 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.16 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 = "models"
version = "0.1.0"
authors = ["Tom Kirchner <tjk@amazon.com>"]
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]
base64 = "0.13"
bottlerocket-release = { path = "../bottlerocket-release", version = "0.1" }
indexmap = { version = "1", features = ["serde"] }
lazy_static = "1"
libc = "0.2"
model-derive = { path = "model-derive", version = "0.1" }
regex = "1"
scalar = { path = "scalar", version = "0.1" }
scalar-derive = { path = "scalar-derive", version = "0.1" }
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_plain = "1"
snafu = "0.7"
toml = "0.5"
x509-parser = "0.14"
url = "2"
[build-dependencies]
bottlerocket-variant = { version = "0.1", path = "../bottlerocket-variant" }
generate-readme = { version = "0.1", path = "../generate-readme" }
filetime = "0.2"
rand = "0.8"
[dev-dependencies]
serde_json = "1"
[lib]
# We're picking the current *model* with build.rs, so users shouldn't think
# about importing *models* (plural), just the one current model.
name = "model"
path = "src/lib.rs"