31 lines
867 B
TOML
31 lines
867 B
TOML
[package]
|
|
name = "comic_viewer"
|
|
version = "0.0.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
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.2", features = [] }
|
|
|
|
[dependencies]
|
|
once_cell = "1.17.0"
|
|
tauri = { version = "1.2", features = ["dialog-open", "fs-read-file", "protocol-all", "shell-open"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
|
anyhow = "1.0.68"
|
|
thiserror = "1.0.38"
|
|
walkdir = "2.3.2"
|
|
serde_repr = "0.1.10"
|
|
tokio = { version = "1.23.1", features = ["full"] }
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|