uv/crates/uv-resolver
konsti 73e62c0c17
Don't warn when dependency is constraint by other dependency (#16149)
Currently, `uv lock --resolution lowest-direct` warns above the setup
below, as we visit the unbounded `anyio[trio]` first.

```toml
[project]
name = "project"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
    "anyio[trio]",
    "anyio>=4"
]
```
2025-10-07 17:59:01 +02:00
..
src Don't warn when dependency is constraint by other dependency (#16149) 2025-10-07 17:59:01 +02:00
Cargo.toml Use a global flags instance for wheel check (#16047) 2025-09-30 00:10:11 +00:00