Files
Card-Collection-Manager-2/card-collection-manager-2/src-tauri/Cargo.toml
T
Sebastian Dine 28579efc80 initial commit
2022-12-02 14:37:07 +00:00

43 lines
1.0 KiB
TOML

[package]
name = "card-collection-manager-2"
version = "1.0.0"
description = "A Tauri App"
authors = ["you"]
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" ]