mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-03 16:40:54 -05:00
* Datetime payload index * Introduce IndexMapItem * Drop FieldIndex::DatetimeIndex * Rename OpenAPI struct names * Switch to microseconds * Validate and serialize grpc timestamps * Add tests with different timezones * minor review fixes * Revert "Drop FieldIndex::DatetimeIndex" This reverts commitd55f251afd. * Revert "Introduce IndexMapItem" This reverts commitc5255f6b1a. * fix: back to microseconds after reverts * extract range conversion from boxed checker fn * add log to deps * don't run macro doctest * no_run -> ignore * remove prost-types in favor of prost-wkt-types * better assertion on test_payload_indexing.py * propagate unparsable datetime --------- Co-authored-by: Luis Cossío <luis.cossio@outlook.com>
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[package]
|
|
name = "api"
|
|
version = "1.7.4"
|
|
authors = [
|
|
"Andrey Vasnetsov <andrey@vasnetsov.com>",
|
|
"Qdrant Team <info@qdrant.tech>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
tracing = ["dep:tracing", "segment/tracing"]
|
|
|
|
[dependencies]
|
|
tonic = { workspace = true }
|
|
prost = { workspace = true }
|
|
prost-wkt-types = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
schemars = { workspace = true }
|
|
uuid = { workspace = true }
|
|
tokio = { workspace = true }
|
|
rand = "0.8.5"
|
|
chrono = { version = "~0.4", features = ["serde"] }
|
|
thiserror = "1.0"
|
|
parking_lot = { workspace = true }
|
|
validator = { version = "0.16", features = ["derive"] }
|
|
log = "0.4"
|
|
|
|
common = { path = "../common/common" }
|
|
segment = { path = "../segment" }
|
|
sparse = { path = "../sparse" }
|
|
|
|
tracing = { workspace = true, optional = true }
|
|
|
|
[build-dependencies]
|
|
tonic-build = { version = "0.10.2", features = ["prost"] }
|
|
prost-build = { version = "0.11.8", features = ["cleanup-markdown"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true }
|