17 lines
304 B
TOML
17 lines
304 B
TOML
[package]
|
|
name = "werkzeug"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = ["alloc"]
|
|
alloc = []
|
|
std = ["alloc"]
|
|
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" |