uv/crates/gourgeist/Cargo.toml
Charlie Marsh 0ca17a1cf2
Use local copy of gourgeist (#62)
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.
2023-10-08 18:45:08 +00:00

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"]