sqlx-paginated 0.3.0

A flexible, type-safe SQLx query builder for dynamic web APIs, offering seamless pagination, searching, filtering, and sorting.
Documentation
[dependencies.chrono]
features = ["serde"]
version = "0.4.42"

[dependencies.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.serde_json]
version = "1.0.148"

[dependencies.sqlx]
default-features = false
features = ["runtime-tokio-rustls", "macros", "postgres", "sqlite", "uuid", "chrono", "json"]
version = "0.8.6"

[dependencies.tokio]
version = "1.47.1"

[dependencies.tracing]
default-features = false
version = "0.1.44"

[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.47.1"

[features]
default = ["postgres"]
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]
tracing = ["tracing/default"]

[lib]
name = "sqlx_paginated"
path = "src/lib.rs"

[package]
authors = ["@alexandrughinea"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A flexible, type-safe SQLx query builder for dynamic web APIs, offering seamless pagination, searching, filtering, and sorting."
documentation = "https://docs.rs/sqlx-paginated"
edition = "2021"
license = "MIT"
name = "sqlx-paginated"
readme = "README.md"
repository = "https://github.com/alexandrughinea/sqlx-paginated"
version = "0.3.0"

[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"