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
23 lines (21 loc) · 875 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "sqlx-sqlite-conn-mgr"
# Sync major.minor with major.minor of SQLx crate
version = "0.8.7"
description = "Wraps SQLx for SQLite, enforcing pragmatic connection policies for mobile and desktop applications"
authors = ["Jeremy Thomerson"]
license = "MIT"
edition = "2024"
rust-version = "1.89"
repository = "https://github.com/silvermine/tauri-plugin-sqlite"
readme = "README.md"
keywords = ["sqlite", "sqlx", "database", "connection-pool", "async"]
categories = ["database", "asynchronous"]
[dependencies]
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "migrate"] }
thiserror = "2.0.17"
tokio = { version = "1.49.0", features = ["full"] }
tracing = { version = "0.1.44", default-features = false, features = ["std", "release_max_level_off"] }
serde = { version = "1.0.228", features = ["derive"] }
[dev-dependencies]
tempfile = "3.24.0"