prune-lang 0.2.0

Prune is a constraint logic programming language with branching heuristic.
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 = "prune-lang"
version = "0.2.0"
authors = ["Anton Ping <antonping1999@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Prune is a constraint logic programming language with branching heuristic."
readme = "README.md"
keywords = [
    "logic-programming",
    "dsl",
    "prolog",
    "kanren",
    "smt",
]
categories = [
    "command-line-utilities",
    "compilers",
]
license = "Apache-2.0"
repository = "https://github.com/AntonPing/prune-lang"

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

[[bin]]
name = "prune"
path = "src/main.rs"

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

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

[dependencies.clap]
version = "4.5.51"
features = ["derive"]

[dependencies.easy-smt]
version = "0.3.2"

[dependencies.itertools]
version = "0.14.0"

[dependencies.logos]
version = "0.15.1"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.radix_trie]
version = "0.3.0"

[dependencies.rand]
version = "0.9.2"

[dependencies.snailquote]
version = "0.3.1"

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