mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00

In a discussion on an issue, it became confusing to talk about "resolved" manifests and dependency resolution, so I'm switching manifests to use the other term I considered, "normalized".
26 lines
565 B
TOML
26 lines
565 B
TOML
[package]
|
|
name = "cargo-util-schemas"
|
|
version = "0.6.0"
|
|
rust-version = "1.80" # MSRV:1
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Deserialization schemas for Cargo"
|
|
|
|
[dependencies]
|
|
semver.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde-untagged.workspace = true
|
|
serde-value.workspace = true
|
|
thiserror.workspace = true
|
|
toml.workspace = true
|
|
unicode-xid.workspace = true
|
|
url.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dev-dependencies]
|
|
snapbox.workspace = true
|