spargio 0.5.13

Work-stealing async runtime for Rust built on io_uring and msg_ring
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "spargio"
version = "0.5.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Work-stealing async runtime for Rust built on io_uring and msg_ring"
homepage = "https://github.com/soumyarupsarkar/spargio"
documentation = "https://docs.rs/spargio"
readme = "README.md"
license = "MIT"
repository = "https://github.com/soumyarupsarkar/spargio"
resolver = "2"

[features]
default = []
macros = ["dep:spargio-macros"]
uring-native = []

[lib]
name = "spargio"
path = "src/lib.rs"

[[example]]
name = "mixed_mode_service"
path = "examples/mixed_mode_service.rs"

[[example]]
name = "native_extension_statx"
path = "examples/native_extension_statx.rs"

[[example]]
name = "network_work_stealing"
path = "examples/network_work_stealing.rs"

[[example]]
name = "quickstart_file_server"
path = "examples/quickstart_file_server.rs"

[[example]]
name = "quickstart_ingest"
path = "examples/quickstart_ingest.rs"

[[example]]
name = "quickstart_network"
path = "examples/quickstart_network.rs"

[[test]]
name = "bench_tail_guardrail_tdd"
path = "tests/bench_tail_guardrail_tdd.rs"

[[test]]
name = "boundary_tdd"
path = "tests/boundary_tdd.rs"

[[test]]
name = "companion_ops_tdd"
path = "tests/companion_ops_tdd.rs"

[[test]]
name = "deferred_items_tdd"
path = "tests/deferred_items_tdd.rs"

[[test]]
name = "docs_tdd"
path = "tests/docs_tdd.rs"

[[test]]
name = "du_parity_tdd"
path = "tests/du_parity_tdd.rs"

[[test]]
name = "entry_macro_tdd"
path = "tests/entry_macro_tdd.rs"

[[test]]
name = "ergonomics_tdd"
path = "tests/ergonomics_tdd.rs"

[[test]]
name = "primitives_tdd"
path = "tests/primitives_tdd.rs"

[[test]]
name = "quic_ops_tdd"
path = "tests/quic_ops_tdd.rs"

[[test]]
name = "quic_perf_guardrail_tdd"
path = "tests/quic_perf_guardrail_tdd.rs"

[[test]]
name = "runtime_tdd"
path = "tests/runtime_tdd.rs"

[[test]]
name = "scheduler_profile_ops_tdd"
path = "tests/scheduler_profile_ops_tdd.rs"

[[test]]
name = "slices_tdd"
path = "tests/slices_tdd.rs"

[[test]]
name = "stress_tdd"
path = "tests/stress_tdd.rs"

[[test]]
name = "tokio_interop_tdd"
path = "tests/tokio_interop_tdd.rs"

[[test]]
name = "uring_native_tdd"
path = "tests/uring_native_tdd.rs"

[[test]]
name = "workspace_companions_tdd"
path = "tests/workspace_companions_tdd.rs"

[[bench]]
name = "du_api"
path = "benches/du_api.rs"
harness = false

[[bench]]
name = "fanout_fanin"
path = "benches/fanout_fanin.rs"
harness = false

[[bench]]
name = "fs_api"
path = "benches/fs_api.rs"
harness = false

[[bench]]
name = "net_api"
path = "benches/net_api.rs"
harness = false

[[bench]]
name = "net_experiments"
path = "benches/net_experiments.rs"
harness = false

[[bench]]
name = "ping_pong"
path = "benches/ping_pong.rs"
harness = false

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.crossbeam-queue]
version = "0.3"

[dependencies.futures]
version = "0.3"

[dependencies.spargio-macros]
version = "0.5.13"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
    "io-util",
    "net",
]

[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7.11"

[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"

[target.'cfg(target_os = "linux")'.dependencies.slab]
version = "0.4"

[target.'cfg(target_os = "linux")'.dev-dependencies.compio]
version = "0.18.0"
features = [
    "runtime",
    "io-uring",
    "fs",
    "net",
    "io",
    "time",
]
default-features = false