Files
open-xiaoai/packages/client-rust/Cargo.toml
T

25 lines
603 B
TOML
Raw Normal View History

[package]
name = "open-xiaoai"
version = "1.0.0"
edition = "2021"
[profile.release]
2025-05-08 22:38:30 +08:00
lto = true
opt-level = "s"
codegen-units = 1
panic = "abort"
strip = true
debug = false
[workspace.metadata.cross.target.armv7-unknown-linux-gnueabihf]
image = "ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:0.2.5"
[dependencies]
futures = "0.3.31"
2025-10-13 11:29:48 +08:00
rand = "0.9.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2025-10-13 11:29:48 +08:00
tokio = { version = "1.47", features = ["fs", "macros", "process", "rt-multi-thread", "sync", "time"] }
tokio-tungstenite = "0.26.2"
uuid = { version = "1.18.1", features = ["v4"] }