-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
36 lines (32 loc) · 1.08 KB
/
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 = "ignition-config"
repository = "https://github.com/coreos/ignition-config-rs"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.75.0"
exclude = ["/.github", "/.gitignore"]
authors = [ "Benjamin Gilbert <[email protected]>" ]
description = "Data structures for reading/writing Ignition configs"
version = "0.5.0"
[package.metadata.release]
sign-commit = true
sign-tag = true
push = false
publish = false
pre-release-commit-message = "cargo: ignition-config release {{version}}"
tag-message = "ignition-config v{{version}}"
[dependencies]
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_ignored = "0.1"
serde_json = "1.0"
thiserror = "1.0"
[build-dependencies]
anyhow = "1.0"
proc-macro2 = { version = "1.0", optional = true }
quote = { version = "1.0", optional = true }
schemafy_lib = { version = "0.6.0", optional = true }
syn = { version = ">= 1, < 3", features = ["full", "parsing", "visit-mut"], optional = true }
tempfile = { version = "3.2.0", optional = true }
[features]
regenerate = ["proc-macro2", "quote", "schemafy_lib", "syn", "tempfile"]