[package]
edition = "2024"
name = "firestore-structured-query"
version = "0.30.0"
authors = ["bouzuya <m@bouzuya.net>"]
build = false
exclude = [
".github",
"docs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Firestore StructuredQuery builder"
readme = "README.md"
keywords = [
"firestore",
"gcloud",
"google",
"structured-query",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bouzuya/firestore-structured-query"
[features]
btree-map = [
"googleapis-tonic-google-firestore-v1/btree-map",
"serde-firestore-value/btree-map",
]
bytes = [
"googleapis-tonic-google-firestore-v1/bytes",
"serde-firestore-value/bytes",
]
default = [
"vec-u8",
"hash-map",
]
hash-map = [
"googleapis-tonic-google-firestore-v1/hash-map",
"serde-firestore-value/hash-map",
]
serde = [
"dep:serde",
"dep:serde-firestore-value",
]
vec-u8 = [
"googleapis-tonic-google-firestore-v1/vec-u8",
"serde-firestore-value/vec-u8",
]
[lib]
name = "firestore_structured_query"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "v0_10_0"
path = "tests/v0_10_0.rs"
[[test]]
name = "v0_1_0"
path = "tests/v0_1_0.rs"
[[test]]
name = "v0_2_0"
path = "tests/v0_2_0.rs"
[[test]]
name = "v0_3_0"
path = "tests/v0_3_0.rs"
[[test]]
name = "v0_4_0"
path = "tests/v0_4_0.rs"
[[test]]
name = "v0_5_0"
path = "tests/v0_5_0.rs"
[[test]]
name = "v0_5_1"
path = "tests/v0_5_1.rs"
[[test]]
name = "v0_6_0"
path = "tests/v0_6_0.rs"
[[test]]
name = "v0_6_1"
path = "tests/v0_6_1.rs"
[[test]]
name = "v0_8_0"
path = "tests/v0_8_0.rs"
[[test]]
name = "v0_8_2"
path = "tests/v0_8_2.rs"
[[test]]
name = "v0_9_0"
path = "tests/v0_9_0.rs"
[dependencies.googleapis-tonic-google-firestore-v1]
version = "0.34.0"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde-firestore-value]
version = "0.28.0"
optional = true
default-features = false
[lints.rust]
missing_docs = "deny"