mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[package]
|
|
name = "uv-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 }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
uv-client = { workspace = true }
|
|
uv-configuration = { workspace = true }
|
|
uv-distribution-types = { workspace = true }
|
|
uv-fs = { workspace = true }
|
|
uv-normalize = { workspace = true }
|
|
uv-pep508 = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
uv-warnings = { workspace = true }
|
|
|
|
fs-err = { workspace = true }
|
|
memchr = { workspace = true }
|
|
reqwest = { workspace = true, optional = true }
|
|
reqwest-middleware = { workspace = true, optional = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
unscanny = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[features]
|
|
http = ["reqwest", "reqwest-middleware"]
|
|
|
|
[dev-dependencies]
|
|
anyhow = { version = "1.0.89" }
|
|
assert_fs = { version = "1.1.2" }
|
|
indoc = { workspace = true }
|
|
insta = { version = "1.40.0", features = ["filters"] }
|
|
itertools = { version = "0.14.0" }
|
|
regex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
test-case = { version = "3.3.1" }
|
|
tokio = { version = "1.40.0" }
|