asdi 0.2.3

Another Simplistic Datalog Implementation (in Rust)
Documentation
[dependencies.csv]
optional = true
version = "1.1"

[dependencies.paste]
version = "1.0"

[dependencies.pest]
optional = true
version = "2.1"

[dependencies.pest_derive]
optional = true
version = "2.1"

[dependencies.prettytable-rs]
optional = true
version = "0.8"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.tracing]
version = "0.1.29"
[dev-dependencies.pretty_assertions]
version = "1.0"

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

[features]
default = ["parser", "tabular", "io"]
io = ["io_csv", "io_json", "io_text"]
io_csv = ["csv"]
io_json = ["serde_json"]
io_text = ["tabular"]
parser = ["pest", "pest_derive"]
tabular = ["prettytable-rs"]
typeset = []

[package]
description = "Another Simplistic Datalog Implementation (in Rust)"
edition = "2021"
license-file = "LICENSE"
name = "asdi"
readme = "README.md"
repository = "https://github.com/johnstonskj/rust-asdi"
resolver = "2"
version = "0.2.3"
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "doc-src/header.html"]