alopex-embedded 0.5.0

Embedded database interface for Alopex DB
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "alopex-embedded"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded database interface for Alopex DB"
readme = false
keywords = [
    "database",
    "embedded",
]
categories = ["database-implementations"]
license = "Apache-2.0"
repository = "https://github.com/alopex-db/alopex"

[features]
default = []
s3 = [
    "alopex-core/s3",
    "tokio",
    "object_store",
    "bytes",
    "futures",
    "url",
]

[lib]
name = "alopex_embedded"
path = "src/lib.rs"

[[example]]
name = "embedded-kv"
path = "examples/embedded-kv.rs"

[[example]]
name = "embedded-sql"
path = "examples/embedded-sql.rs"

[[example]]
name = "embedded-vector"
path = "examples/embedded-vector.rs"

[[example]]
name = "in-memory"
path = "examples/in-memory.rs"

[[test]]
name = "acceptance_embedded"
path = "tests/acceptance_embedded.rs"

[[test]]
name = "catalog_integration"
path = "tests/catalog_integration.rs"

[[test]]
name = "columnar_regression"
path = "tests/columnar_regression.rs"

[[test]]
name = "dataframe_integration"
path = "tests/dataframe_integration.rs"

[[test]]
name = "e2e_sql"
path = "tests/e2e_sql.rs"

[[test]]
name = "hnsw_integration_tests"
path = "tests/hnsw_integration_tests.rs"

[[test]]
name = "in_memory"
path = "tests/in_memory.rs"

[[test]]
name = "in_memory_vector"
path = "tests/in_memory_vector.rs"

[[test]]
name = "sql_integration"
path = "tests/sql_integration.rs"

[[test]]
name = "vector_e2e"
path = "tests/vector_e2e.rs"

[[test]]
name = "vector_regression"
path = "tests/vector_regression.rs"

[[bench]]
name = "in_memory"
path = "benches/in_memory.rs"
harness = false

[[bench]]
name = "memory_vs_disk"
path = "benches/memory_vs_disk.rs"
harness = false

[dependencies.alopex-core]
version = "0.5.0"
features = ["compression-zstd"]

[dependencies.alopex-dataframe]
version = "0.2.0"

[dependencies.alopex-sql]
version = "0.5.0"

[dependencies.arrow]
version = "53"

[dependencies.bytes]
version = "1.5"
optional = true

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.object_store]
version = "0.11"
features = ["aws"]
optional = true

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.35"
features = ["full"]
optional = true

[dependencies.url]
version = "2.5"
optional = true

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.tempfile]
version = "3.8"