mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-31 13:39:36 +02:00
feat: bump to RC
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-plugin-sql"
|
||||
version = "2.0.0-beta.11"
|
||||
version = "2.0.0-rc.0"
|
||||
description = "Interface with SQL databases."
|
||||
authors = { workspace = true }
|
||||
license = { workspace = true }
|
||||
@@ -10,7 +10,7 @@ repository = { workspace = true }
|
||||
links = "tauri-plugin-sql"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
features = [ "sqlite" ]
|
||||
features = ["sqlite"]
|
||||
rustc-args = [ "--cfg", "docsrs" ]
|
||||
rustdoc-args = [ "--cfg", "docsrs" ]
|
||||
|
||||
@@ -24,12 +24,12 @@ tauri = { workspace = true }
|
||||
log = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
futures-core = "0.3"
|
||||
sqlx = { version = "0.8", features = [ "json", "time" ] }
|
||||
sqlx = { version = "0.8", features = ["json", "time"] }
|
||||
time = "0.3"
|
||||
tokio = { version = "1", features = [ "sync" ] }
|
||||
indexmap = { version = "2", features = [ "serde" ] }
|
||||
tokio = { version = "1", features = ["sync"] }
|
||||
indexmap = { version = "2", features = ["serde"] }
|
||||
|
||||
[features]
|
||||
sqlite = [ "sqlx/sqlite", "sqlx/runtime-tokio" ]
|
||||
mysql = [ "sqlx/mysql", "sqlx/runtime-tokio-rustls" ]
|
||||
postgres = [ "sqlx/postgres", "sqlx/runtime-tokio-rustls" ]
|
||||
sqlite = ["sqlx/sqlite", "sqlx/runtime-tokio"]
|
||||
mysql = ["sqlx/mysql", "sqlx/runtime-tokio-rustls"]
|
||||
postgres = ["sqlx/postgres", "sqlx/runtime-tokio-rustls"]
|
||||
|
||||
Reference in New Issue
Block a user