forked from silvermine/tauri-plugin-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "sqlx-sqlite-toolkit"
# Sync major.minor with major.minor of SQLx crate
version = "0.8.7"
license = "MIT"
edition = "2024"
rust-version = "1.89"
authors = ["Jeremy Thomerson"]
description = "High-level SQLite API built on sqlx with builder-pattern queries, transactions, and JSON decoding"
repository = "https://github.com/silvermine/tauri-plugin-sqlite"
readme = "README.md"
keywords = ["sqlite", "sqlx", "database", "transactions", "async"]
categories = ["database", "asynchronous"]
[features]
default = []
observer = ["dep:sqlx-sqlite-observer"]
[dependencies]
sqlx-sqlite-conn-mgr = { path = "../sqlx-sqlite-conn-mgr" }
sqlx-sqlite-observer = { path = "../sqlx-sqlite-observer", features = ["conn-mgr"], optional = true }
sqlx = { version = "0.8.6", features = ["sqlite", "json", "time", "runtime-tokio"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
indexmap = { version = "2.12", features = ["serde"] }
base64 = "0.22"
time = "0.3"
uuid = { version = "1.11", features = ["v4"] }
tokio = { version = "1.48.0", features = ["sync", "rt"] }
tracing = { version = "0.1", default-features = false, features = ["std", "release_max_level_off"] }
[dev-dependencies]
tempfile = "3.23.0"
tokio = { version = "1.48.0", features = ["rt-multi-thread", "macros"] }