werkzeug/Cargo.toml
Janis 9e3fa2cdb0 u32,u64,u16 conversion functions, sync queue, random utilities
- `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
2025-08-06 22:51:27 +02:00

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}