mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-06 17:22:54 +00:00
Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.5...v0.11.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
805 B
TOML
29 lines
805 B
TOML
[package]
|
|
name = "tantivy-columnar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
homepage = "https://github.com/quickwit-oss/tantivy"
|
|
repository = "https://github.com/quickwit-oss/tantivy"
|
|
description = "column oriented storage for tantivy"
|
|
categories = ["database-implementations", "data-structures", "compression"]
|
|
|
|
[dependencies]
|
|
itertools = "0.11.0"
|
|
fnv = "1.0.7"
|
|
fastdivide = "0.4.0"
|
|
|
|
stacker = { version= "0.1", path = "../stacker", package="tantivy-stacker"}
|
|
sstable = { version= "0.1", path = "../sstable", package = "tantivy-sstable" }
|
|
common = { version= "0.5", path = "../common", package = "tantivy-common" }
|
|
tantivy-bitpacker = { version= "0.4", path = "../bitpacker/" }
|
|
serde = "1.0.152"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
more-asserts = "0.3.1"
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
unstable = []
|