ringline 0.0.1

io_uring-native async I/O runtime for Linux
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 = "ringline"
version = "0.0.1"
authors = ["Brian Martin <brayniac@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "io_uring-native async I/O runtime for Linux"
readme = "README.md"
keywords = [
    "io-uring",
    "async",
    "networking",
    "linux",
    "event-loop",
]
categories = [
    "asynchronous",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/brayniac/ringline"
resolver = "2"

[features]
tls = ["rustls"]

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

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

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

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

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

[[example]]
name = "echo_tls_server"
path = "examples/echo_tls_server.rs"
required-features = ["tls"]

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

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

[dependencies.bytes]
version = "1"

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

[dependencies.io-uring]
version = "0.7"

[dependencies.libc]
version = "0.2"

[dependencies.metriken]
version = "0.7"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.rustls]
version = "0.23"
features = [
    "std",
    "ring",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "2"