28 lines
822 B
TOML
28 lines
822 B
TOML
[package]
|
|
name = "comicinfo-editor-v2"
|
|
version = "0.1.0"
|
|
description = "App for creating Comicinfo.xml files"
|
|
authors = ["Neshura"]
|
|
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.4", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.4", features = [ "os-all", "path-all", "dialog-open", "shell-open"] }
|
|
quick-xml = { version = "0.29.0", features = ["serde", "serialize"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde-xml-rs = "0.6.0"
|
|
serde_json = "1.0"
|
|
strum = "0.25.0"
|
|
strum_macros = "0.25.0"
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|