Add a desktop app with tauri
This commit is contained in:
parent
28c2db2a37
commit
30da40555a
42 changed files with 15389 additions and 0 deletions
32
desktop/src-tauri/Cargo.toml
Normal file
32
desktop/src-tauri/Cargo.toml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
[package]
|
||||
name = "rqbit"
|
||||
version = "0.0.0"
|
||||
description = "A Tauri App"
|
||||
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 = "1.5", features = [] }
|
||||
|
||||
[dependencies]
|
||||
tauri = { version = "1.5", features = ["shell-open"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
librqbit = {path = "../../crates/librqbit", features = ["webui"] }
|
||||
tokio = { version = "1.34.0", features = ["rt-multi-thread"] }
|
||||
anyhow = "1.0.75"
|
||||
base64 = "0.21.5"
|
||||
http = "1.0.0"
|
||||
directories = "5.0.1"
|
||||
tracing-subscriber = "0.3.18"
|
||||
|
||||
[features]
|
||||
# this feature is used for production builds or when `devPath` points to the filesystem
|
||||
# DO NOT REMOVE!!
|
||||
custom-protocol = ["tauri/custom-protocol"]
|
||||
|
||||
[workspace]
|
||||
Loading…
Add table
Add a link
Reference in a new issue