-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
41 lines (37 loc) · 1.03 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "sqlb"
version = "0.4.0"
authors = ["Jeremy Chone <[email protected]>"]
edition = "2018"
homepage = "https://github.com/jeremychone/rust-sqlb"
repository = "https://github.com/jeremychone/rust-sqlb"
description = "Simple, expressive, and progressive SQL Builder for Rust."
keywords = [
"sql",
"sqlbuilder",
"database",
"orm",
"postgres"
]
categories = ["database"]
license = "MIT OR Apache-2.0"
[workspace]
members = [".", "sqlb-macros"]
[dependencies]
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "time", "uuid" ] }
sqlb-macros = { version="0.4.0", path = "sqlb-macros" }
async-trait = "0.1"
time = "0.3.20"
uuid = "1.3.1"
chrono = { version = "0.4", optional = true }
serde_json = { version = "1.0", optional = true }
rust_decimal = { version = "1.34", optional = true }
[features]
default = []
chrono-support = ["chrono"]
json = ["serde_json"]
decimal = ["rust_decimal", "sqlx:rust_decimal"]
[dev-dependencies]
anyhow = "1"
tokio = { version = "1", features = ["full"] }
serial_test = "2"