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.
mediarepo/mediarepo-ui/src-tauri/Cargo.toml

33 lines
732 B
TOML

[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.4.0"
thiserror = "1.0.30"
directories = "4.0.1"
toml = "0.5.8"
[dependencies.tokio]
version = "1.12.0"
features = ["fs", "io-std", "io-util"]
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]