mirror of
https://github.com/tauri-apps/tauri-plugin-sql.git
synced 2026-01-31 00:35:18 +01:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <fabianlars@fabianlars.de> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10678936672 Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
28 lines
824 B
TOML
28 lines
824 B
TOML
[package]
|
|
name = "tauri-plugin-sql"
|
|
version = "0.0.0"
|
|
description = "Interface with SQL databases."
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
#rust-version = { workspace = true }
|
|
rust-version = "1.80"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
futures-core = "0.3"
|
|
sqlx = { version = "0.8", features = ["json", "time"] }
|
|
time = "0.3"
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
[features]
|
|
sqlite = ["sqlx/sqlite", "sqlx/runtime-tokio"]
|
|
mysql = ["sqlx/mysql", "sqlx/runtime-tokio-rustls"]
|
|
postgres = ["sqlx/postgres", "sqlx/runtime-tokio-rustls"]
|