Employ Tilde requirements due to update strategy employed by serde crate possibly having breaking changes at the patch level. Patch 217 is fully functional without fault. It is also the only version tested at present. Patch 218 just revises documentation, so is functionally identical to patch 217.
26 lines
439 B
TOML
26 lines
439 B
TOML
[package]
|
|
name = "kramer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# For clap info, see [dependencies.clap]
|
|
libc = "0.2.169"
|
|
ron = "0.8.1"
|
|
serde = { version = "~1.0.217", features = ["derive"] }
|
|
|
|
[dependencies.clap]
|
|
version = "4.5.27"
|
|
default-features = false
|
|
features = [
|
|
# From default features collection
|
|
"error-context",
|
|
"help",
|
|
"std",
|
|
"suggestions",
|
|
"usage",
|
|
|
|
# Optional features
|
|
"derive",
|
|
]
|