You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
license = ""
|
|
|
|
repository = ""
|
|
|
|
default-run = "app"
|
|
|
|
edition = "2018"
|
|
|
|
build = "src/build.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1.0.0-beta.4" }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
tauri = { version = "1.0.0-beta.8", features = ["api-all"] }
|
|
|
|
rmp-ipc = "0.7.0"
|
|
|
|
thiserror = "1.0.30"
|
|
|
|
directories = "4.0.1"
|
|
|
|
toml = "0.5.8"
|
|
|
|
typemap_rev = "0.1.5"
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.12.0"
|
|
|
|
features = ["fs", "io-std", "io-util"]
|
|
|
|
|
|
|
|
[dependencies.mediarepo]
|
|
|
|
git = "https://github.com/Trivernis/mediarepo-daemon"
|
|
|
|
rev = "ce93a5793348a05052b324562730d97f5c6e2128"
|
|
|
|
features = ["library"]
|
|
|
|
default-features=false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [ "custom-protocol" ]
|
|
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|