mirror of
https://github.com/sebastiandine/Card-Collection-Manager-2.git
synced 2026-08-28 17:00:55 +00:00
43 lines
1.1 KiB
TOML
Executable File
43 lines
1.1 KiB
TOML
Executable File
[package]
|
|
name = "card-collection-manager-2"
|
|
version = "1.0.4"
|
|
description = "A Tauri App"
|
|
authors = ["Sebastian Dine"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.1", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { version = "1.1", features = ["api-all"] }
|
|
|
|
# b64 image encoding
|
|
base64 = "0.13"
|
|
image = "0.24"
|
|
|
|
# rest calls
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
|
|
|
# iterator for enums
|
|
strum = "0.24"
|
|
strum_macros = "0.24"
|
|
|
|
# data type checker, e.g. is_digit
|
|
nom = "7.1.1"
|
|
|
|
|
|
[features]
|
|
# by default Tauri runs in production mode
|
|
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
default = [ "custom-protocol" ]
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
# DO NOT remove this
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|