20 lines
428 B
TOML
20 lines
428 B
TOML
[package]
|
|
name = "werkzeug"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = ["nightly", "alloc"]
|
|
alloc = ["dep:hashbrown"]
|
|
std = ["alloc"]
|
|
transposed-option = ["nightly"]
|
|
nightly = []
|
|
|
|
[dependencies]
|
|
# libc = "0.2"
|
|
|
|
# While I could use libc / windows for this, why not just use this tiny crate
|
|
# which does exactly and only a futex
|
|
atomic-wait = "1.1.0"
|
|
hashbrown = {version = "0.15", optional = true}
|
|
either = "1.15.0" |