Bumps [serde](https://github.com/serde-rs/serde) from 1.0.217 to 1.0.218. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.217...v1.0.218) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
438 B
TOML
26 lines
438 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.218", 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",
|
|
]
|