-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 954 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
29
30
31
32
33
34
[package]
name = "sqlx-paginated"
version = "0.2.30"
edition = "2021"
authors = ["@alexandrughinea"]
description = "A flexible, type-safe SQLx query builder for dynamic web APIs, offering seamless pagination, searching, filtering, and sorting."
license = "MIT"
repository = "https://github.com/alexandrughinea/sqlx-paginated"
documentation = "https://docs.rs/sqlx-paginated"
[features]
tracing = ["tracing/default"]
postgres = ["sqlx/postgres"]
mysql= ["sqlx/mysql"] # - Q3 2025
sqlite = ["sqlx/sqlite"] #- Q2 2025
default = ["postgres"]
[lib]
path = "src/lib.rs"
[dependencies]
sqlx = { version = "0.8.3", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"sqlite",
"uuid",
"chrono",
"json"
] }
chrono = { version = "0.4.39", features = ["serde"] }
tracing = { version = "0.1.41", default-features = false }
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.139"