forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 871 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
36
[package]
name = "models"
version = "0.1.0"
authors = ["Tom Kirchner <[email protected]>"]
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]
base64 = "0.13"
bottlerocket-release = { path = "../bottlerocket-release", version = "0.1.0" }
lazy_static = "1.2"
libc = "0.2"
model-derive = { path = "model-derive", version = "0.1.0" }
regex = "1.1"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_plain = "1.0"
snafu = "0.7"
toml = "0.5"
x509-parser = "0.13"
url = "2.1"
[build-dependencies]
cargo-readme = "3.1"
filetime = "0.2"
rand = "0.8"
[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"