Newer
Older
TelosDB / src / backend / Cargo.toml
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 9 hours ago 1 KB refactor(journals): mask absolute paths and update environment docs
[package]
name = "app"
version = "0.2.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.77.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
name = "app_lib"
crate-type = ["rlib"]

[[bin]]
name = "telos-db"
path = "src/main.rs"

[build-dependencies]
tauri-build = { version = "2.5.4", features = [] }
embed-resource = "1.6"
winres = "0.1.11"
which = "4"

[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2", features = ["tray-icon", "test"] }
tauri-plugin-shell = "2"
tauri-plugin-log = "2"
rusqlite = { version = "0.32", features = ["bundled"] }
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7" }
anyhow = "1.0"
tower-http = { version = "0.5", features = ["cors"] }
dotenvy = "0.15"
sea-orm = { version = "1.1", features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros", "with-chrono"] }
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio-rustls"] }
futures = "0.3"
uuid = { version = "1", features = ["v4"] }

[dev-dependencies]
mockito = "1.4"
sysinfo = "0.33.0"