app/rust/Cargo.toml

30 lines
749 B
TOML
Raw Normal View History

2023-11-04 22:56:03 +08:00
[package]
2024-02-06 20:35:52 +08:00
name = "rust"
2023-11-04 22:56:03 +08:00
version = "0.1.0"
edition = "2021"
2024-02-07 20:38:16 +08:00
[profile.release]
opt-level = "s"
strip = "debuginfo"
2023-11-04 22:56:03 +08:00
[lib]
2024-02-06 20:19:53 +08:00
crate-type = ["cdylib", "staticlib"]
2023-11-04 22:56:03 +08:00
[dependencies]
2024-06-23 21:35:56 +08:00
flutter_rust_bridge = "=2.0.0"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "process"] }
2024-05-07 20:20:08 +08:00
futures = { version = "0.3", default-features = false, features = ["executor"] }
url = "2.5"
once_cell = "1.19"
reqwest = { version = "0.12", features = ["rustls-tls-webpki-roots", "cookies", "gzip", "json", "stream"] }
hickory-resolver = { version = "0.24" }
2024-02-07 20:38:16 +08:00
anyhow = "1.0"
2024-06-16 10:36:32 +08:00
scopeguard = "1.2"
notify-rust = "4"
2024-05-06 22:48:50 +08:00
asar = "0.3.0"
2024-06-16 10:36:32 +08:00
[target.'cfg(windows)'.dependencies]
windows = { version = "0.57.0", features = ["Win32_UI_WindowsAndMessaging"] }
2024-06-23 21:35:56 +08:00
win32job = "2"