mnemo-core 0.4.0

Core storage, data model, query engine, and indexing for Mnemo
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 = "2024"
name = "mnemo-core"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core storage, data model, query engine, and indexing for Mnemo"
readme = false
license = "Apache-2.0"
resolver = "2"

[features]
onnx = [
    "dep:ort",
    "dep:tokenizers",
    "dep:ndarray",
]
s3 = [
    "dep:aws-sdk-s3",
    "dep:aws-config",
]

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

[[example]]
name = "gen_golden_fixture"
path = "examples/gen_golden_fixture.rs"

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

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

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

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

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

[dependencies.aes-gcm]
version = "0.10"

[dependencies.async-trait]
version = "0.1"

[dependencies.aws-config]
version = "1"
optional = true

[dependencies.aws-sdk-s3]
version = "1"
optional = true

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.duckdb]
version = "1.4"
features = ["bundled"]

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.13"

[dependencies.ndarray]
version = "0.17"
optional = true

[dependencies.ort]
version = "2.0.0-rc.11"
optional = true

[dependencies.rand]
version = "0.10"

[dependencies.regex]
version = "1.11"

[dependencies.reqwest]
version = "0.13"
features = ["json"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.11"

[dependencies.subtle]
version = "2.5"

[dependencies.tantivy]
version = "0.26"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokenizers]
version = "0.22"
features = ["fancy-regex"]
optional = true
default-features = false

[dependencies.tokio]
version = "1.48"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.usearch]
version = "2.21"

[dependencies.uuid]
version = "1.11"
features = [
    "v7",
    "serde",
]

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

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

[dev-dependencies.tokio]
version = "1.48"
features = [
    "full",
    "test-util",
    "macros",
]