Files
uv/crates/once-map/Cargo.toml
T
Charlie Marsh e09a51653e Propagate cancellation errors in OnceMap (#1032)
## Summary

Ensures that if an operation is cancelled in one thread, we propagate it
to others rather than panicking.

Related to https://github.com/astral-sh/puffin/issues/1005.
2024-01-22 09:00:21 -05:00

19 lines
418 B
TOML

[package]
name = "once-map"
version = "0.0.1"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
[lints]
workspace = true
[dependencies]
rustc-hash = { workspace = true }
thiserror = { workspace = true }
waitmap = { workspace = true }