mirror of
https://github.com/localsend/localsend.git
synced 2026-06-23 04:10:07 +00:00
18 lines
452 B
TOML
18 lines
452 B
TOML
[package]
|
|
name = "rust_lib_localsend_app"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bytes = "1.9"
|
|
flutter_rust_bridge = { version = "=2.11.1", features = ["uuid"] }
|
|
localsend = { path = "../../core", features = ["full"] }
|
|
tokio = { version = "1.49", features = ["full"] }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = { version = "0.3.22" }
|
|
uuid = { version = "1.11.1", features = ["v4"] }
|