[dependencies.aes-gcm]
version = "0.10.3"
[dependencies.async-std]
features = ["attributes"]
optional = true
version = "1"
[dependencies.tokio]
features = ["full"]
optional = true
version = "1"
[features]
async-std-runtime = ["async-std"]
default = ["thread"]
thread = []
tokio-runtime = ["tokio"]
[lib]
name = "falcotcp"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Secure TCP server/client with AES-256-GCM encryption, authentication, and messaging. Ideal for trusted communication between services, with sync/async worker balancing."
documentation = "https://falcotcp-docs.pages.dev/"
edition = "2024"
license = "Apache-2.0"
name = "falcotcp"
readme = "README.md"
repository = "https://github.com/FeatheredSystems/FalcoTCP"
version = "0.1.2"