[package]
edition = "2021"
rust-version = "1.75"
name = "noxtls-io"
version = "0.1.3"
authors = ["Argenox Technologies LLC"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal implementation crate for noxtls: transport traits and blocking/async TLS record I/O adapters."
homepage = "https://noxtls.com"
documentation = "https://rsdocs.noxtls.com"
readme = "README.md"
keywords = [
"tls",
"io",
"embedded",
"async",
]
categories = [
"network-programming",
"no-std",
]
license = "GPL-2.0-only OR LicenseRef-Argenox-Commercial-License"
repository = "https://github.com/argenox/noxtls-rs"
[features]
adapter-embedded-io = [
"embedded-io",
"alloc",
]
adapter-embedded-io-async = [
"embedded-io-async",
"alloc",
"async-trait",
]
adapter-tokio = [
"tokio",
"std",
"async-trait",
]
alloc = ["noxtls-core/alloc"]
default = [
"std",
"alloc",
]
std = ["noxtls-core/std"]
[lib]
name = "noxtls_io"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.83"
optional = true
[dependencies.embedded-io]
version = "0.6"
optional = true
[dependencies.embedded-io-async]
version = "0.6"
optional = true
[dependencies.noxtls-core]
version = "0.1.3"
default-features = false
[dependencies.tokio]
version = "1"
features = [
"io-util",
"net",
]
optional = true