datafox 0.1.0

A small Datalog parser and streaming query engine for querying facts.
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"
rust-version = "1.85"
name = "datafox"
version = "0.1.0"
build = false
include = [
    "Cargo.toml",
    "README.md",
    "src/**/*.rs",
    "examples/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small Datalog parser and streaming query engine for querying facts."
readme = "README.md"
keywords = [
    "datalog",
    "query",
    "facts",
    "logic",
    "rules",
]
categories = [
    "data-structures",
    "parser-implementations",
]
license = "BSD-3-Clause"
repository = "https://github.com/leostera/datafox"

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

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

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

[dependencies.rayon]
version = "1.7"

[dependencies.regex]
version = "1.10"

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

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.0"
features = [
    "rt",
    "sync",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.bincode]
version = "2.0.1"
features = ["serde"]

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

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tokio]
version = "1.0"
features = [
    "macros",
    "rt",
    "rt-multi-thread",
]