- `NextIf` iterator trait that yields the next element iff some predicate holds - `u64_from_u32s`, `u32s_from_u64`, `u32_from_u16s`, `u16s_from_u32` functions - moved `can_transmute` to `mem` module, added `is_same_size` and `is_aligned` functions - `copy_from` function for `TaggedAtomicPtr` - attempt at a sync queue? - `is_whitespace` function
19 lines
399 B
TOML
19 lines
399 B
TOML
[package]
|
|
name = "werkzeug"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = ["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} |