iroh_android/rust/Cargo.toml
2025-07-07 21:20:53 -04:00

34 lines
775 B
TOML

[package]
name = "iroh_sync_flutter"
version = "0.1.0"
edition = "2021"
[lib]
name = "iroh_sync_flutter"
crate-type = ["staticlib", "cdylib"]
[dependencies]
flutter_rust_bridge = "=2.10.0"
once_cell = "1.17"
# --- Dependencies merged and corrected ---
iroh = "0.28"
tokio = { version = "1.35", features = ["full"] }
tokio-stream = "0.1"
futures-lite = "2.0"
futures = "0.3.28" # <-- ADDED THIS
async-trait = "0.1"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bytes = "1.5"
tokio-util = { version = "0.7", features = ["io"] }
notify = "6.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.6", features = ["v4"] }
[build-dependencies]
flutter_rust_bridge_codegen = "1.82.0"