Files
astral/rust/Cargo.toml
T
2025-03-19 18:32:20 +08:00

25 lines
484 B
TOML

[package]
name = "rust_lib_fltier"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "staticlib"]
[dependencies]
flutter_rust_bridge = "=2.9.0"
lazy_static = "1.4"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
once_cell = "1.19.0"
dashmap = "6.1.0"
chrono = "0.4.38"
humansize = "1.1.1"
tokio = "1.39.2"
anyhow = "1.0.95"
easytier = { path = "./easytier" }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(frb_expand)'] }