[package]
edition = "2024"
rust-version = "1.85"
name = "restqs"
version = "0.1.0"
authors = ["Pedro Guzmán"]
build = false
include = [
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"Cargo.toml",
"LICENSE",
"Makefile",
"README.md",
"SECURITY.md",
"SUPPORT.md",
"docs/**",
"examples/**",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "REST Query Syntax parser for safe REST API filtering plans."
documentation = "https://docs.rs/restqs"
readme = "README.md"
keywords = [
"rest",
"query",
"filter",
"sql",
"api",
]
categories = [
"parser-implementations",
"web-programming",
]
license = "MIT"
repository = "https://github.com/OneTesseractInMultiverse/restqs"
[features]
default = []
sqlx = []
[lib]
name = "restqs"
path = "src/lib.rs"
[[example]]
name = "basic_query"
path = "examples/basic_query.rs"
[[test]]
name = "catalog"
path = "tests/catalog.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "pagination"
path = "tests/pagination.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "sqlx_adapter"
path = "tests/sqlx_adapter.rs"
[[test]]
name = "value"
path = "tests/value.rs"
[dependencies]
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
unused_lifetimes = "deny"
unused_qualifications = "warn"