mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

This PR gets `gourgeist` passing our local CI and integrated into the broader workspace. There's some duplicate between concepts in `gourgeist` (like the `InterpreterInfo`) and structs we have elsewhere, but we can tackle those later.
34 lines
1 KiB
TOML
34 lines
1 KiB
TOML
[package]
|
|
name = "gourgeist"
|
|
version = "0.0.4"
|
|
edition = "2021"
|
|
description = "virtualenv creation implemented in rust"
|
|
repository = "https://github.com/konstin/gourgeist"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["virtualenv", "venv", "python"]
|
|
readme = "Readme.md"
|
|
|
|
[dependencies]
|
|
install-wheel-rs = { path = "../install-wheel-rs", optional = true }
|
|
wheel-filename = { path = "../wheel-filename" }
|
|
|
|
camino = { workspace = true }
|
|
clap = { workspace = true }
|
|
configparser = { workspace = true }
|
|
dirs = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
reqwest = { workspace = true, optional = true, features = ["blocking"] }
|
|
rayon = { workspace = true, optional = true }
|
|
seahash = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
which = { workspace = true }
|
|
|
|
[features]
|
|
default = ["install"]
|
|
install = ["install-wheel-rs", "reqwest"]
|
|
parallel = ["rayon"]
|