lissen/src-tauri/Cargo.toml

27 lines
706 B
TOML
Raw Normal View History

2023-09-30 10:36:23 +02:00
[package]
authors = ["you"]
description = "A Tauri App"
edition = "2021"
2023-09-30 10:36:23 +02:00
license = ""
name = "lissen"
2023-09-30 10:36:23 +02:00
repository = ""
version = "0.0.0"
2023-09-30 10:36:23 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = {version = "1.4", features = [] }
2023-09-30 10:36:23 +02:00
[dependencies]
id3 = "1.8.0"
reqwest = {version = "0.11.20", features = ["json"] }
serde = {version = "1.0", features = ["derive"] }
serde_json = "1.0"
tauri = {version = "1.4", features = ["dialog-open", "shell-open"] }
2023-09-30 10:36:23 +02:00
walkdir = "2.4.0"
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]