ringcore 0.1.0

A minimal async runtime built on Linux io_uring, designed to expose how Rust futures map to kernel I/O.
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 = "ringcore"
version = "0.1.0"
authors = ["RingCore Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal async runtime built on Linux io_uring, designed to expose how Rust futures map to kernel I/O."
readme = "README.md"
keywords = [
    "io_uring",
    "async",
    "runtime",
    "linux",
]
categories = [
    "asynchronous",
    "os::linux-apis",
]
license = "MIT"
repository = "https://github.com/sumant1122/ringcore"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.libc]
version = "0.2"

[dev-dependencies.tokio]
version = "1"
features = ["full"]