2ad924d4cf
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.
28 lines
651 B
TOML
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"]
|