mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
92233ea64a
* fix(deps): update rust crate sqlx to 0.7 * Update sql's msrv in workflow to 1.65 * Update README.md * Update Cargo.toml * Update Cargo.toml --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
28 lines
714 B
TOML
28 lines
714 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.65"
|
|
|
|
# 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.7", features = ["runtime-tokio-rustls", "json", "time"] }
|
|
time = "0.3"
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
[features]
|
|
sqlite = ["sqlx/sqlite"]
|
|
mysql = ["sqlx/mysql"]
|
|
postgres = ["sqlx/postgres"]
|