24 lines
670 B
TOML
24 lines
670 B
TOML
[package]
|
|
name = "wzp-proto"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT OR Apache-2.0"
|
|
rust-version = "1.85"
|
|
description = "WarzonePhone protocol types, traits, and core logic"
|
|
|
|
# This crate is designed to be importable standalone — no workspace inheritance.
|
|
# featherChat and other projects can depend on it directly via git:
|
|
# wzp-proto = { git = "ssh://git@git.manko.yoga:222/manawenuz/wz-phone.git", path = "crates/wzp-proto" }
|
|
|
|
[dependencies]
|
|
bytes = "1"
|
|
thiserror = "2"
|
|
async-trait = "0.1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde_json = "1"
|
|
bincode = "1"
|