This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
comicinfo-editor-v2/src-tauri/Cargo.toml

29 lines
921 B
TOML
Raw Permalink Normal View History

2023-10-11 15:43:28 +00:00
[package]
name = "comicinfo-editor-v2"
2023-12-19 23:17:40 +00:00
version = "0.1.12"
2023-11-01 19:21:59 +00:00
description = "App for creating Comicinfo.xml files"
authors = ["Neshura"]
2023-10-11 15:43:28 +00:00
license = ""
2023-11-17 19:49:21 +00:00
repository = "https://forgejo.neshweb.net/Neshura/comicinfo-editor-v2"
2023-10-11 15:43:28 +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.4", features = [] }
[dependencies]
tauri = { version = "1.4", features = [ "os-all", "path-all", "dialog-open", "shell-open"] }
2023-11-01 19:21:59 +00:00
quick-xml = { version = "0.29.0", features = ["serde", "serialize"] }
2023-10-11 15:43:28 +00:00
serde = { version = "1.0", features = ["derive"] }
2023-11-01 19:21:59 +00:00
serde-xml-rs = "0.6.0"
2023-10-11 15:43:28 +00:00
serde_json = "1.0"
2023-11-01 19:21:59 +00:00
strum = "0.25.0"
strum_macros = "0.25.0"
zip = { version = "0.6.6", features = [] }
2023-10-11 15:43:28 +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"]