2024-02-14 16:01:21 +00:00
|
|
|
[package]
|
2024-03-08 15:00:34 +00:00
|
|
|
name = "rusty-slicer"
|
|
|
|
version = "0.0.1"
|
|
|
|
description = "An app to slice your playlist into multiple files"
|
|
|
|
authors = ["Ayabusa"]
|
2024-02-14 16:01:21 +00:00
|
|
|
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]
|
2024-02-18 18:51:53 +00:00
|
|
|
tauri = { version = "1.5", features = [ "api-all"] }
|
2024-02-14 16:01:21 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2024-02-18 18:51:53 +00:00
|
|
|
native-dialog = "0.7.0"
|
|
|
|
lazy_static = "1.4.0"
|
2024-02-14 16:01:21 +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"]
|