[package]
edition = "2021"
rust-version = "1.85"
name = "wireshift-fallback"
version = "0.1.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blocking worker-pool fallback backend for wireshift"
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"async",
"fallback",
"epoll",
"kqueue",
]
categories = ["asynchronous"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhreal/wireshift"
[lib]
name = "wireshift_fallback"
path = "src/lib.rs"
doctest = false
[[test]]
name = "adversarial"
path = "tests/adversarial/mod.rs"
[[test]]
name = "adversarial_test_depth_adversarial"
path = "tests/adversarial/test_depth_adversarial.rs"
[[test]]
name = "adversarial_tests"
path = "tests/adversarial/mod.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent/mod.rs"
[[test]]
name = "concurrent_tests"
path = "tests/concurrent/mod.rs"
[[test]]
name = "integration"
path = "tests/integration/mod.rs"
[[test]]
name = "no_orphan_subdirs"
path = "tests/no_orphan_subdirs.rs"
[[test]]
name = "property"
path = "tests/property/mod.rs"
[[test]]
name = "unit"
path = "tests/unit/mod.rs"
[[test]]
name = "unit_test_ops_read"
path = "tests/unit/test_ops_read.rs"
[[test]]
name = "unit_tests"
path = "tests/unit/mod.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
[dependencies.crossbeam-channel]
version = "=0.5.15"
[dependencies.libc]
version = "=0.2.186"
[dependencies.rustix]
version = "=1.1.4"
features = [
"fs",
"param",
"net",
"pipe",
"mm",
]
[dependencies.tracing]
version = "=0.1.44"
[dependencies.wireshift-core]
version = "0.1"
[dev-dependencies.proptest]
version = "=1.9.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[lints.rust]
missing_docs = "warn"