swactor/crates/distribution/Cargo.toml

24 lines
518 B
TOML
Raw Permalink Normal View History

[package]
name = "distribution"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
[features]
default = []
[dependencies]
swactor = { path = "../..", features = ["serde", "transport"] }
swactor-transport = { path = "../transport" }
2026-06-09 09:29:07 +00:00
datastream = { path = "../datastream" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2026-05-20 07:41:30 +00:00
uuid = { version = "1", features = ["v4", "serde"] }
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
[dev-dependencies]
serde_json = "1"
2026-06-09 09:29:07 +00:00
proptest = "1"