[package]
edition = "2021"
rust-version = "1.85"
name = "wireshift-core"
version = "0.1.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core typed operations, buffers, and backend traits for wireshift"
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"io-uring",
"async",
"io",
"linux",
]
categories = [
"asynchronous",
"filesystem",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhreal/wireshift"
[lib]
name = "wireshift_core"
path = "src/lib.rs"
doctest = false
[[test]]
name = "adversarial"
path = "tests/adversarial/mod.rs"
[[test]]
name = "adversarial_adversarial_io_test"
path = "tests/adversarial/adversarial_io_test.rs"
[[test]]
name = "adversarial_adversarial_suite"
path = "tests/adversarial/adversarial_suite.rs"
[[test]]
name = "adversarial_break_it"
path = "tests/adversarial/break_it.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_batch"
path = "tests/unit/batch.rs"
[[test]]
name = "unit_core"
path = "tests/unit/core.rs"
[[test]]
name = "unit_registered_buffers_drop"
path = "tests/unit/registered_buffers_drop.rs"
[[test]]
name = "unit_splice_madvise_tests"
path = "tests/unit/splice_madvise_tests.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
[dependencies.crossbeam-channel]
version = "=0.5.15"
[dependencies.crossbeam-queue]
version = "=0.3.12"
[dependencies.thiserror]
version = "=2.0.18"
[dependencies.tracing]
version = "=0.1.44"
[dev-dependencies.tempfile]
version = "=3.27.0"
[lints.rust]
missing_docs = "warn"