[package]
edition = "2021"
rust-version = "1.85"
name = "wireshift-uring"
version = "0.1.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Linux io_uring backend for wireshift"
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"io-uring",
"async",
"linux",
"io",
]
categories = [
"asynchronous",
"os::linux-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhreal/wireshift"
[lib]
name = "wireshift_uring"
path = "src/lib.rs"
doctest = false
[[test]]
name = "adversarial"
path = "tests/adversarial/mod.rs"
[[test]]
name = "adversarial_adversarial_tests"
path = "tests/adversarial/adversarial_tests.rs"
[[test]]
name = "adversarial_break_it"
path = "tests/adversarial/break_it.rs"
[[test]]
name = "adversarial_dev_zero"
path = "tests/adversarial/dev_zero.rs"
[[test]]
name = "adversarial_fd_opens"
path = "tests/adversarial/fd_opens.rs"
[[test]]
name = "adversarial_submission_queue"
path = "tests/adversarial/submission_queue.rs"
[[test]]
name = "adversarial_test_depth_adversarial"
path = "tests/adversarial/test_depth_adversarial.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent/mod.rs"
[[test]]
name = "crash"
path = "tests/crash/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 = "property_property_tests"
path = "tests/property/property_tests.rs"
[[test]]
name = "property_read_bytes"
path = "tests/property/read_bytes.rs"
[[test]]
name = "property_test_depth_property"
path = "tests/property/test_depth_property.rs"
[[test]]
name = "regression"
path = "tests/regression/mod.rs"
[[test]]
name = "unit"
path = "tests/unit/mod.rs"
[[test]]
name = "unit_concurrent_tests"
path = "tests/unit/concurrent_tests.rs"
[[test]]
name = "unit_crash_tests"
path = "tests/unit/crash_tests.rs"
[[test]]
name = "unit_read"
path = "tests/unit/read.rs"
[[test]]
name = "unit_regression_tests"
path = "tests/unit/regression_tests.rs"
[[test]]
name = "unit_test_depth_gap"
path = "tests/unit/test_depth_gap.rs"
[[test]]
name = "unit_test_depth_unit"
path = "tests/unit/test_depth_unit.rs"
[[test]]
name = "unit_unit_tests"
path = "tests/unit/unit_tests.rs"
[[test]]
name = "unit_write"
path = "tests/unit/write.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
[dependencies.crossbeam-channel]
version = "=0.5.15"
[dependencies.io-uring]
version = "=0.7.11"
[dependencies.libc]
version = "=0.2.186"
[dependencies.linux-raw-sys]
version = "=0.12.1"
features = ["io_uring"]
[dependencies.rustix]
version = "=1.1.4"
features = [
"event",
"net",
"fs",
]
[dependencies.tracing]
version = "=0.1.44"
[dependencies.wireshift-core]
version = "0.1"
[dependencies.wireshift-fallback]
version = "0.1"
[dev-dependencies.proptest]
version = "=1.9.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[lints.rust]
missing_docs = "warn"