ktls-stream 0.0.3

Abstraction for implementing Linux kernel TLS (kTLS) offload in Rust.
Documentation
[dependencies.ktls-core]
version = "=0.0.3"

[dependencies.log]
optional = true
version = "0.4.28"

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

[dependencies.rustls]
default-features = false
optional = true
version = "0.23.27"

[dependencies.tokio]
features = ["net"]
optional = true
version = "1.47"

[dependencies.tracing]
optional = true
version = "0.1.41"

[features]
async-io-tokio = ["dep:tokio"]
default = ["async-io-tokio"]
log = ["dep:log", "ktls-core/log"]
shim-rustls = ["dep:rustls", "ktls-core/shim-rustls"]
tls13-key-update = ["ktls-core/tls13-key-update"]
tracing = ["dep:tracing", "ktls-core/tracing"]

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

[lints.clippy]
alloc_instead_of_core = "warn"
exhaustive_enums = "warn"
exhaustive_structs = "warn"
manual_let_else = "warn"
upper_case_acronyms = "warn"
use_self = "warn"

[lints.rust]
elided_lifetimes_in_paths = "warn"
missing_docs = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_must_use = "warn"
unused_qualifications = "warn"

[package]
authors = ["Hantong Chen <cxwdyx620@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming"]
description = """
Abstraction for implementing Linux kernel TLS (kTLS) offload in Rust.
"""
edition = "2021"
keywords = ["ktls", "linux", "tls"]
license = "MIT OR Apache-2.0"
name = "ktls-stream"
readme = "README.md"
repository = "https://github.com/hanyu-dev/ktls"
rust-version = "1.83.0"
version = "0.0.3"

[package.metadata.docs.rs]
features = ["tls13-key-update", "shim-rustls"]
targets = ["x86_64-unknown-linux-gnu"]