mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-06 17:22:54 +00:00
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "fastfield_codecs"
|
|
version = "0.3.0"
|
|
authors = ["Pascal Seitz <pascal@quickwit.io>"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
description = "Fast field codecs used by tantivy"
|
|
documentation = "https://docs.rs/fastfield_codecs/"
|
|
homepage = "https://github.com/quickwit-oss/tantivy"
|
|
repository = "https://github.com/quickwit-oss/tantivy"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
common = { version = "0.4", path = "../common/", package = "tantivy-common" }
|
|
tantivy-bitpacker = { version= "0.3", path = "../bitpacker/" }
|
|
ownedbytes = { version = "0.4.0", path = "../ownedbytes" }
|
|
prettytable-rs = {version="0.9.0", optional= true}
|
|
rand = {version="0.8.3", optional= true}
|
|
fastdivide = "0.4"
|
|
log = "0.4"
|
|
itertools = { version = "0.10.3" }
|
|
measure_time = { version="0.8.2", optional=true}
|
|
|
|
[dev-dependencies]
|
|
more-asserts = "0.3.0"
|
|
proptest = "1.0.0"
|
|
rand = "0.8.3"
|
|
|
|
[features]
|
|
bin = ["prettytable-rs", "rand", "measure_time"]
|
|
default = ["bin"]
|
|
unstable = []
|
|
|