ruvector-dag 2.0.4

Directed Acyclic Graph (DAG) structures for query plan optimization with neural learning
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 = "ruvector-dag"
version = "2.0.4"
authors = ["Ruvector Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Directed Acyclic Graph (DAG) structures for query plan optimization with neural learning"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ruvnet/ruvector"

[features]
default = ["full"]
full = [
    "tokio",
    "dashmap",
    "crossbeam",
    "parking_lot",
]
production-crypto = [
    "pqcrypto-dilithium",
    "pqcrypto-kyber",
]
wasm = ["getrandom/js"]

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

[[example]]
name = "artificial_instincts"
path = "examples/exotic/artificial_instincts.rs"

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

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

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

[[example]]
name = "coherence_safety"
path = "examples/exotic/coherence_safety.rs"

[[example]]
name = "federated_coherence"
path = "examples/exotic/federated_coherence.rs"

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

[[example]]
name = "living_simulation"
path = "examples/exotic/living_simulation.rs"

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

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

[[example]]
name = "synthetic_reflex_organism"
path = "examples/exotic/synthetic_reflex_organism.rs"

[[example]]
name = "thought_integrity"
path = "examples/exotic/thought_integrity.rs"

[[example]]
name = "timing_synchronization"
path = "examples/exotic/timing_synchronization.rs"

[[test]]
name = "integration"
path = "tests/integration/mod.rs"

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

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

[dependencies.crossbeam]
version = "0.8"
optional = true

[dependencies.dashmap]
version = "5.5"
optional = true

[dependencies.getrandom]
version = "0.2"

[dependencies.ndarray]
version = "0.15"

[dependencies.parking_lot]
version = "0.12"
optional = true

[dependencies.pqcrypto-dilithium]
version = "0.5"
optional = true

[dependencies.pqcrypto-kyber]
version = "0.8"
optional = true

[dependencies.rand]
version = "0.8"

[dependencies.ruvector-core]
version = "2.0"
default-features = false

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

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

[dependencies.tracing]
version = "0.1"

[dependencies.zeroize]
version = "1.7"
features = ["derive"]

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

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tokio-test]
version = "0.4"