44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "dbx"
|
|
version = "0.1.0"
|
|
description = "Open-source database management tool"
|
|
authors = ["skyler"]
|
|
license = "MIT"
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
[lib]
|
|
name = "dbx_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.5.6", features = [] }
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = "s"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
log = "0.4"
|
|
tauri = { version = "2.10.3", features = [] }
|
|
tauri-plugin-log = "2"
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-native-tls", "mysql", "postgres", "sqlite", "json", "chrono", "uuid"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
anyhow = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tauri-plugin-dialog = "2.7.0"
|
|
tauri-plugin-fs = "2.5.0"
|
|
redis = { version = "0.32.2", features = ["tokio-comp"] }
|
|
portpicker = "0.1.1"
|
|
duckdb = { version = "1.3.2", features = ["bundled"] }
|
|
tiberius = { version = "0.12.3", features = ["tds73", "chrono"] }
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
mongodb = "3.2.5"
|