dinopkg/crates/dinopkg-package-json/Cargo.toml

19 lines
434 B
TOML
Raw Normal View History

2024-07-09 19:46:45 +00:00
[package]
name = "dinopkg-package-json"
version = "0.3.0"
2024-07-09 19:46:45 +00:00
edition = "2021"
[dependencies]
2024-07-09 19:49:26 +00:00
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
2024-07-15 19:04:33 +00:00
serde_with = "3.9.0"
2024-07-09 19:58:05 +00:00
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["fs"], optional = true }
[dev-dependencies]
maplit = "1.0.2"
pretty_assertions = "1.4.0"
2024-07-30 10:26:24 +00:00
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }