-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 839 Bytes
/
Cargo.toml
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
[package]
name = "ryzz"
version = "0.2.1"
edition = "2021"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/swlkr/ryzz"
repository = "https://github.com/swlkr/ryzz"
keywords = ["drizzle", "orm", "sqlite", "db", "database"]
description = "A sqlite query builder and automatic schema migrator. Don't call it an orm"
[workspace]
members = [
"ryzz_macros"
]
[dependencies]
ryzz_macros = { path = "ryzz_macros", version = "0.2.0" }
rusqlite = { version = "0.29.0", features = ["bundled", "serde_json"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.106" }
serde_rusqlite = { version = "0.33.1" }
thiserror = { version = "1.0.48" }
tokio-rusqlite = { version = "0.4.0" }
seq-macro = "0.3"
[dev-dependencies]
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] }