mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 02:48:17 +00:00

Pull in a bunch of updates so they get some testing before we announce the project. textwrap 0.16 is blocked on miette updating, http 1.0 on reqwest.
35 lines
962 B
TOML
35 lines
962 B
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-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" }
|
|
indoc = { version = "2.0.4" }
|
|
insta = { version = "1.34.0" }
|
|
serde_json = { version = "1.0.111" }
|
|
tempfile = { version = "3.9.0" }
|
|
test-case = { version = "3.3.1" }
|