[package]
edition = "2024"
name = "tailtalk"
version = "0.5.2"
authors = ["FeralFirmware"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern async user space AppleTalk stack with Rust + Tokio "
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/feralfirmware/tailtalk"
[features]
ethertalk = [
"dep:pcap",
"dep:mac_address",
]
[lib]
name = "tailtalk"
path = "src/lib.rs"
[[test]]
name = "adsp_test"
path = "tests/adsp_test.rs"
[[test]]
name = "asp_session_test"
path = "tests/asp_session_test.rs"
[[test]]
name = "asp_status_test"
path = "tests/asp_status_test.rs"
[[test]]
name = "client_exchange"
path = "tests/client_exchange.rs"
[[test]]
name = "pap_test"
path = "tests/pap_test.rs"
[dependencies.anyhow]
version = "^1.0.102"
[dependencies.byteorder]
version = "^1.5.0"
[dependencies.bytes]
version = "^1.11.1"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.encoding_rs]
version = "^0.8.35"
[dependencies.futures]
version = "^0.3.32"
[dependencies.im]
version = "15.1.0"
[dependencies.mac_address]
version = "1.1"
optional = true
[dependencies.magic-db]
version = "0.5"
[dependencies.pcap]
version = "2"
features = ["capture-stream"]
optional = true
[dependencies.rand]
version = "0.10"
[dependencies.sled]
version = "0.34"
[dependencies.tailtalk-packets]
version = "^0.5"
[dependencies.tashtalk]
version = "^0.2"
[dependencies.tokio]
version = "^1.51.1"
features = [
"full",
"io-util",
"io-util",
]
[dependencies.tokio-serial]
version = "5.4.4"
[dependencies.tokio-util]
version = "0.7.12"
features = ["codec"]
[dependencies.tracing]
version = "^0.1.44"
[dependencies.tracing-subscriber]
version = "^0.3"
features = ["env-filter"]
[dev-dependencies.tempfile]
version = "3.13"
[target."cfg(unix)".dependencies.xattr]
version = "1.3.1"