Files
uv/crates/uv-normalize/Cargo.toml
T
konsti 2ad924d4cf Use consistent workspace inheritance (#15031)
Following a CI failure in https://github.com/astral-sh/uv/pull/15028,
ensure that all workspace crates are inheriting the MSRV and other
workspace configuration from the workspace root.
2025-08-02 22:03:51 +02:00

28 lines
651 B
TOML

[package]
name = "uv-normalize"
version = "0.0.1"
description = "Normalization for distribution, package and extra names."
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
uv-small-str = { workspace = true }
rkyv = { workspace = true }
schemars = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
[features]
schemars = ["dep:schemars", "uv-small-str/schemars"]