mirror of https://github.com/astral-sh/uv
30 lines
751 B
TOML
30 lines
751 B
TOML
[package]
|
|
name = "distribution-filename"
|
|
version = "0.0.1"
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
rkyv = ["dep:rkyv", "pep440_rs/rkyv"]
|
|
|
|
[dependencies]
|
|
pep440_rs = { path = "../pep440-rs" }
|
|
platform-tags = { path = "../platform-tags" }
|
|
uv-normalize = { path = "../uv-normalize" }
|
|
|
|
rkyv = { workspace = true, features = ["strict", "validation"], optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
thiserror = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { version = "1.34.0" }
|