mirror of https://github.com/astral-sh/uv
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "requirements-txt"
|
|
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
|
|
|
|
[dependencies]
|
|
pep440_rs = { path = "../pep440-rs", features = ["serde"] }
|
|
pep508_rs = { path = "../pep508-rs", features = ["serde"] }
|
|
puffin-fs = { path = "../puffin-fs" }
|
|
puffin-normalize = { path = "../puffin-normalize" }
|
|
|
|
fs-err = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
unscanny = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { version = "1.0.79" }
|
|
assert_fs = { version = "1.1.1" }
|
|
indoc = { version = "2.0.4" }
|
|
insta = { version = "1.34.0", features = ["filters"] }
|
|
itertools = { version = "0.10.1" }
|
|
serde_json = { version = "1.0.111" }
|
|
tempfile = { version = "3.9.0" }
|
|
test-case = { version = "3.3.1" }
|