[package]
edition = "2024"
name = "falcotcp"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TCP server/client"
documentation = "https://ttd3v.github.io/FurnariusMark/"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/FeatheredSystems/FalcoTCP"
[features]
GZIP = ["flate2"]
LZ4 = ["lz4_flex"]
LZMA = ["xz2"]
ZSTD = ["zstd"]
client = []
complete-compression = [
"LZMA",
"GZIP",
"LZ4",
"ZSTD",
]
default = []
dev-redundancies = []
dynamic-uring-link = []
encryption = ["aes-gcm"]
falco-client = ["client"]
falco-server = ["server"]
heubias-balance = []
heubias-performance = []
heubias-ratio = []
heuristics = []
server = []
tokio-runtime = ["tokio"]
[lib]
name = "falcotcp"
path = "src/lib.rs"
[dependencies.aes-gcm]
version = "=0.10.3"
optional = true
[dependencies.flate2]
version = "=1.1.4"
optional = true
[dependencies.lz4_flex]
version = "=0.11.5"
optional = true
[dependencies.tokio]
version = "=1.47.1"
features = ["full"]
optional = true
[dependencies.xz2]
version = "=0.1.7"
optional = true
[dependencies.zstd]
version = "=0.12"
optional = true
[dev-dependencies.log]
version = "0.4.28"
[build-dependencies.cc]
version = "1.2.41"