jktcp 0.1.1

A userspace TCP stack that runs over any async read/write transport
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 = "jktcp"
version = "0.1.1"
authors = ["Jackson Coxson"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A userspace TCP stack that runs over any async read/write transport"
documentation = "https://docs.rs/jktcp"
readme = "README.md"
keywords = [
    "tcp",
    "network",
]
license = "MIT"
repository = "https://github.com/jkcoxson/jktcp"

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

[dependencies.crossfire]
version = "2.1"

[dependencies.futures]
version = "0.3"

[dependencies.rand]
version = "0.9"

[dependencies.tokio]
version = "1"
features = [
    "io-util",
    "fs",
    "sync",
    "rt",
    "time",
    "macros",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.bytes]
version = "1.10"

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]

[dev-dependencies.tun-rs]
version = "2.0.8"
features = ["async_tokio"]