[package]
edition = "2024"
rust-version = "1.95"
name = "infino"
version = "0.1.0"
build = "build.rs"
exclude = [
"infino-python/",
"examples/locomo-recall/fixture.json",
"examples/locomo-recall/embed.mjs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast retrieval engine that stores data on object storage and runs SQL, full-text search, and vector search over it from a single system — search-on-Parquet."
homepage = "https://github.com/infino-ai/infino"
readme = "README.md"
keywords = [
"search",
"vector",
"full-text",
"parquet",
"object-storage",
]
categories = [
"database",
"database-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/infino-ai/infino"
[features]
bench-diagnostics = []
default = ["mimalloc"]
mimalloc = ["dep:mimalloc"]
test-helpers = []
[lib]
name = "infino"
path = "src/lib.rs"
bench = false
[[example]]
name = "demo"
path = "examples/demo.rs"
required-features = ["test-helpers"]
[[example]]
name = "locomo-recall"
path = "examples/locomo-recall/main.rs"
[[example]]
name = "profile_fts_build"
path = "examples/profile_fts_build.rs"
required-features = ["test-helpers"]
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "license_audit"
path = "tests/license_audit.rs"
[[test]]
name = "spdx_headers"
path = "tests/spdx_headers.rs"
[[test]]
name = "superfile"
path = "tests/superfile/main.rs"
bench = false
[[test]]
name = "supertable"
path = "tests/supertable/main.rs"
bench = false
[[test]]
name = "supertable_commit_crash_localfs"
path = "tests/supertable_commit_crash_localfs.rs"
[[test]]
name = "supertable_concurrent_processes"
path = "tests/supertable_concurrent_processes.rs"
[[bench]]
name = "bench"
path = "benches/bench/main.rs"
harness = false
[dependencies.apache-avro]
version = "0.17"
[dependencies.arc-swap]
version = "1"
[dependencies.arrow]
version = "58"
[dependencies.arrow-array]
version = "58"
[dependencies.arrow-schema]
version = "58"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.bitpacking]
version = "0.9"
[dependencies.blake3]
version = "1"
[dependencies.bumpalo]
version = "3"
features = ["collections"]
[dependencies.bytemuck]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crc-fast]
version = "1.10.0"
[dependencies.dashmap]
version = "6"
[dependencies.datafusion]
version = "53"
[dependencies.ferroid]
version = "2"
features = [
"std",
"alloc",
"snowflake",
"basic",
]
[dependencies.figment]
version = "0.10"
features = [
"yaml",
"env",
]
[dependencies.fs4]
version = "0.13"
features = ["tokio"]
[dependencies.fst]
version = "0.4"
[dependencies.futures]
version = "0.3"
[dependencies.hashbrown]
version = "0.17.1"
[dependencies.memmap2]
version = "0.9"
[dependencies.memory-stats]
version = "1.2"
features = ["always_use_statm"]
[dependencies.mimalloc]
version = "0.1"
optional = true
default-features = false
[dependencies.num_cpus]
version = "1"
[dependencies.object_store]
version = "0.13"
features = [
"aws",
"azure",
]
[dependencies.parquet]
version = "58"
features = [
"async",
"object_store",
]
[dependencies.rand]
version = "0.10"
[dependencies.rand_distr]
version = "0.6"
[dependencies.rayon]
version = "1"
[dependencies.roaring]
version = "0.10"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.static_assertions]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"fs",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.wide]
version = "1"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.fastbloom]
version = "0.17"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.hdrhistogram]
version = "7"
[dev-dependencies.httpdate]
version = "1"
[dev-dependencies.hyper]
version = "1"
features = [
"server",
"http1",
]
[dev-dependencies.hyper-util]
version = "0.1"
features = [
"server",
"tokio",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.reqwest]
version = "0.12"
default-features = false
[dev-dependencies.s3s]
version = "0.13"
[dev-dependencies.s3s-fs]
version = "0.13"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.tokio]
version = "1"
features = ["test-util"]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]
[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = 1
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = 1