[package]
edition = "2024"
name = "dope"
version = "0.4.2"
authors = ["inq <gofiri@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The manifold runtime"
readme = false
license = "MIT"
repository = "https://github.com/dope-rs/dope"
resolver = "2"
[features]
mem-stats = []
[lib]
name = "dope"
path = "src/lib.rs"
[[test]]
name = "connector_dial"
path = "tests/connector_dial.rs"
[[test]]
name = "egress_queue_no_drop"
path = "tests/egress_queue_no_drop.rs"
[[test]]
name = "handler_macro"
path = "tests/handler_macro.rs"
[[test]]
name = "listener_accept_oneshot"
path = "tests/listener_accept_oneshot.rs"
[[test]]
name = "listener_drain_reply"
path = "tests/listener_drain_reply.rs"
[[test]]
name = "listener_pipeline"
path = "tests/listener_pipeline.rs"
[[test]]
name = "multishot_arm"
path = "tests/multishot_arm.rs"
[[test]]
name = "recv_phase_cap"
path = "tests/recv_phase_cap.rs"
[[test]]
name = "runtime_macro"
path = "tests/runtime_macro.rs"
[[test]]
name = "system_snapshot"
path = "tests/system_snapshot.rs"
[[test]]
name = "timer"
path = "tests/timer.rs"
[dependencies.libc]
version = "0.2"
[dependencies.o3]
version = "0.1"
[dependencies.pin-project]
version = "1"
[dev-dependencies.futures-util]
version = "0.3"
features = [
"async-await",
"alloc",
]
default-features = false
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7"
[target.'cfg(target_os = "linux")'.dev-dependencies.io-uring]
version = "0.7"
[target.'cfg(target_os = "linux")'.dev-dependencies.libc]
version = "0.2"