mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-19 22:40:40 +00:00
* feat(fulltext_index): integrate full-text indexer with parquet reader Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * disable reload Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * address comments Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * fix: range allow exceeding total row Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * test: unit tests in index Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * test: prune row groups Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * chore: rename creator Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * test: sst fulltext index Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * chore: address comment Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> --------- Signed-off-by: Zhenchi <zhongzc_arch@outlook.com>
93 lines
2.4 KiB
TOML
93 lines
2.4 KiB
TOML
[package]
|
|
name = "mito2"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test = ["common-test-util", "log-store", "rstest", "rstest_reuse", "rskafka"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
aquamarine.workspace = true
|
|
async-channel = "1.9"
|
|
async-stream.workspace = true
|
|
async-trait = "0.1"
|
|
bytes.workspace = true
|
|
common-base.workspace = true
|
|
common-config.workspace = true
|
|
common-datasource.workspace = true
|
|
common-decimal.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-runtime.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-test-util = { workspace = true, optional = true }
|
|
common-time.workspace = true
|
|
common-wal.workspace = true
|
|
crc32fast = "1"
|
|
crossbeam-utils.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datatypes.workspace = true
|
|
dotenv.workspace = true
|
|
futures.workspace = true
|
|
humantime-serde.workspace = true
|
|
index.workspace = true
|
|
itertools.workspace = true
|
|
lazy_static = "1.4"
|
|
log-store = { workspace = true, optional = true }
|
|
memcomparable = "0.2"
|
|
moka = { workspace = true, features = ["sync", "future"] }
|
|
object-store.workspace = true
|
|
parquet = { workspace = true, features = ["async"] }
|
|
paste.workspace = true
|
|
pin-project.workspace = true
|
|
prometheus.workspace = true
|
|
prost.workspace = true
|
|
puffin.workspace = true
|
|
rand.workspace = true
|
|
regex = "1.5"
|
|
rskafka = { workspace = true, optional = true }
|
|
rstest = { workspace = true, optional = true }
|
|
rstest_reuse = { workspace = true, optional = true }
|
|
scopeguard = "1.2"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_with.workspace = true
|
|
smallvec.workspace = true
|
|
snafu.workspace = true
|
|
store-api.workspace = true
|
|
strum.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
tokio-util.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
common-function.workspace = true
|
|
common-procedure-test.workspace = true
|
|
common-test-util.workspace = true
|
|
criterion = "0.4"
|
|
dotenv.workspace = true
|
|
log-store.workspace = true
|
|
object-store = { workspace = true, features = ["services-memory"] }
|
|
rskafka.workspace = true
|
|
rstest.workspace = true
|
|
rstest_reuse.workspace = true
|
|
session.workspace = true
|
|
toml.workspace = true
|
|
|
|
[[bench]]
|
|
name = "memtable_bench"
|
|
harness = false
|
|
required-features = ["test"]
|