bkbh/Cargo.toml
Bianca Fürstenau 185fd938c1 Refactor a bit
2025-03-05 00:34:23 +01:00

48 lines
1.4 KiB
TOML

[package]
name = "bkbh"
version = "0.1.0"
description = "Buchhaltung für „Darmstadt sagt Nein zur Bezahlkarte!“"
authors = ["Bianca Fürstenau"]
edition = "2021"
[features]
tauri = ["server"]
leptos = []
server = [
"dep:tauri",
"dep:tauri-plugin-opener",
"dep:tauri-plugin-fs",
"dep:rusqlite",
"dep:rand",
"dep:chrono",
"dep:tokio",
"dep:curl",
"dep:openssl",
"dep:ring-compat",
]
[lib]
name = "bkbh"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
leptos = { version = "^0.7", features = ["csr"] }
leptos_router = { version = "^0.7" }
tauri-sys = { git = "ssh://git@gitea.mathebau.de:3022/Peter/tauri-sys.git", branch = "v2", features = ["core"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
tauri = { version = "2", features = [], optional = true }
tauri-plugin-opener = { version = "2", optional = true }
tauri-plugin-fs = {version = "2", optional = true}
rusqlite = {version = "^0.33", features = ["backup", "bundled"], optional = true }
rand = {version = "^0.8", optional = true}
chrono = {version = "^0.4", optional = true}
tokio = {version = "^1.43", optional = true}
curl = {version = "^0.4", optional = true}
openssl = {version = "^0.10", features = ["vendored"], optional = true}
ring-compat = {version = "^0.8", features = ["signature", "rand_core"], optional = true}
console_error_panic_hook = {version = "0.1.7"}