forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 776 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
[package]
name = "models"
version = "0.1.0"
authors = ["Tom Kirchner <[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]
bottlerocket-release.workspace = true
libc.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
toml.workspace = true
# settings plugins
bottlerocket-settings-models.workspace = true
bottlerocket-settings-plugin.workspace = true
[build-dependencies]
generate-readme.workspace = true
[lib]
# We're loading the correct *model* at runtime, so users shouldn't think about
# importing *models* (plural), just the one current model.
name = "model"
path = "src/lib.rs"