[package]
edition = "2024"
name = "see"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, asynchronous runtime-agnostic alternative to tokio::sync::watch"
readme = "README.md"
keywords = [
"async",
"channel",
"runtime-agnostic",
"synchronization",
"watch",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/compio-rs/see"
[features]
default = ["stream"]
stream = []
[lib]
name = "see"
path = "src/lib.rs"
[[test]]
name = "compio_sync"
path = "tests/compio_sync.rs"
[[test]]
name = "compio_unsync"
path = "tests/compio_unsync.rs"
[[test]]
name = "smol"
path = "tests/smol.rs"
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
harness = false
[[bench]]
name = "single_thread"
path = "benches/single_thread.rs"
harness = false
[dependencies.event-listener]
version = "5.4.1"
[dependencies.futures-util]
version = "0.3.31"
features = ["alloc"]
default-features = false
[dependencies.local-event]
version = "0.1.1"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.scopeguard]
version = "1.2.0"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.compio]
version = "0.16.0"
features = [
"macros",
"time",
]
[dev-dependencies.criterion]
version = "0.7.0"
features = [
"async_tokio",
"html_reports",
]
[dev-dependencies.smol]
version = "2.0.2"
[dev-dependencies.tokio]
version = "1.48.0"
features = ["full"]