mirror of
https://github.com/astral-sh/uv
synced 2026-01-21 21:40:11 -05:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [markdown](https://redirect.github.com/wooorm/markdown-rs) | dependencies | major | `0.3.0` -> `1.0.0` | --- ### Release Notes <details> <summary>wooorm/markdown-rs (markdown)</summary> ### [`v1.0.0`](https://redirect.github.com/wooorm/markdown-rs/releases/tag/1.0.0) 💯 Nothing changed since the last alpha. It’s just that: this crate’s now being used a bunch and working well, so it’s time to be stable! </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/astral-sh/uv). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNTcuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI1Ny4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJpbnRlcm5hbCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: konstin <konstin@mailbox.org>
78 lines
2.6 KiB
TOML
78 lines
2.6 KiB
TOML
[package]
|
|
name = "uv-dev"
|
|
version = "0.0.1"
|
|
description = "Build wheels from source distributions"
|
|
publish = false
|
|
|
|
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]
|
|
uv-cache = { workspace = true, features = ["clap"] }
|
|
uv-cli = { workspace = true }
|
|
uv-client = { workspace = true }
|
|
uv-configuration = { workspace = true }
|
|
uv-distribution-filename = { workspace = true }
|
|
uv-distribution-types = { workspace = true }
|
|
uv-extract = { workspace = true, optional = true }
|
|
uv-installer = { workspace = true }
|
|
uv-macros = { workspace = true }
|
|
uv-options-metadata = { workspace = true }
|
|
uv-pep508 = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
uv-python = { workspace = true }
|
|
uv-settings = { workspace = true, features = ["schemars"] }
|
|
uv-static = { workspace = true }
|
|
uv-workspace = { workspace = true, features = ["schemars"] }
|
|
|
|
# Any dependencies that are exclusively used in `uv-dev` should be listed as non-workspace
|
|
# dependencies, to ensure that we're forced to think twice before including them in other crates.
|
|
anstream = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive", "wrap_help"] }
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
itertools = { workspace = true }
|
|
markdown = { version = "1.0.0" }
|
|
owo-colors = { workspace = true }
|
|
poloto = { version = "19.1.2", optional = true }
|
|
pretty_assertions = { version = "1.4.1" }
|
|
resvg = { version = "0.29.0", optional = true }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tagu = { version = "0.1.6", optional = true }
|
|
textwrap = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-durations-export = { workspace = true, features = ["plot"] }
|
|
tracing-subscriber = { workspace = true }
|
|
uv-performance-memory-allocator = { path = "../uv-performance-memory-allocator", optional = true }
|
|
walkdir = { workspace = true }
|
|
|
|
[lib]
|
|
name = "uv_dev"
|
|
|
|
[[bin]]
|
|
name = "uv-dev"
|
|
# We don't want to build the dev CLI by default, so we skip it by requiring an off-by-default feature
|
|
required-features = ["dev"]
|
|
|
|
[features]
|
|
default = ["performance", "uv-extract/static"]
|
|
# Actually build the dev CLI.
|
|
dev = []
|
|
performance = ["performance-memory-allocator"]
|
|
performance-memory-allocator = ["dep:uv-performance-memory-allocator"]
|
|
render = ["poloto", "resvg", "tagu"]
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["flate2", "uv-extract", "uv-performance-memory-allocator"]
|