rqbit/desktop/src-tauri/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2023-12-02 22:24:36 +00:00
[package]
name = "rqbit-desktop"
2025-06-12 12:31:23 +01:00
version = "8.1.1"
description = "rqbit torrent client"
2023-12-02 22:24:36 +00:00
authors = ["you"]
license = ""
repository = ""
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2", features = [] }
2023-12-02 22:24:36 +00:00
[dependencies]
tauri = { version = "2", features = [] }
2023-12-02 22:24:36 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
librqbit = { path = "../../crates/librqbit", features = [
"tracing-subscriber-utils",
"http-api",
"webui",
2024-08-24 00:34:57 +01:00
"upnp-serve-adapter",
] }
2023-12-02 22:24:36 +00:00
tokio = { version = "1.34.0", features = ["rt-multi-thread"] }
anyhow = "1.0.75"
2024-08-28 11:27:44 +01:00
base64 = "0.22"
2023-12-02 22:24:36 +00:00
http = "1.0.0"
directories = "5.0.1"
2024-03-29 21:06:59 +00:00
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
2023-12-06 12:14:26 +00:00
tracing = "0.1"
serde_with = "3.4.0"
parking_lot = "0.12.1"
2024-08-28 13:56:12 +01:00
gethostname = "0.5.0"
tauri-plugin-shell = "2"
gtk = "0.18.2"
2023-12-02 22:24:36 +00:00
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]
disable-upload = ["librqbit/disable-upload"]