Introduce the FacetValue enum type

This commit is contained in:
Clément Renault 2021-01-13 11:30:27 +01:00 committed by Kerollmops
parent d893e83622
commit 51a37de885
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
3 changed files with 4 additions and 1 deletions

1
Cargo.lock generated
View File

@ -869,6 +869,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dacdec97876ef3ede8c50efc429220641a0b11ba0048b4b0c357bccbc47c5204"
dependencies = [
"num-traits",
"serde",
]
[[package]]

View File

@ -27,7 +27,7 @@ near-proximity = { git = "https://github.com/Kerollmops/plane-sweep-proximity",
num-traits = "0.2.14"
obkv = "0.1.0"
once_cell = "1.4.0"
ordered-float = "2.0.0"
ordered-float = { version = "2.0.0", features = ["serde"] }
rayon = "1.3.1"
regex = "1.4.2"
ringtail = "0.3.0"

View File

@ -1,4 +1,6 @@
mod facet_type;
mod facet_value;
pub mod value_encoding;
pub use self::facet_type::FacetType;
pub use self::facet_value::FacetValue;