mirror of
https://github.com/EasyTier/astral.git
synced 2025-05-19 10:30:24 +00:00
25 lines
484 B
TOML
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)'] }
|
|
|