[package]
edition = "2024"
rust-version = "1.85"
name = "claimr"
version = "0.1.0"
authors = ["Hans Van Wesenbeeck <hvw@aivolution.ch>"]
build = "build.rs"
exclude = [
"docs/",
"CLAUDE.md",
"static/img/claimr-logo.png",
".claude/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Claimr — a constraint logic programming language, Prolog III inspired, parsed with a rustemo-generated LR parser."
readme = "README.md"
keywords = [
"constraint",
"logic-programming",
"prolog",
"parser",
"rustemo",
]
categories = [
"parser-implementations",
"compilers",
]
license = "Apache-2.0"
repository = "https://github.com/a1v0lut10n/claimr"
[lib]
name = "claimr"
path = "src/lib.rs"
[[bin]]
name = "claimr"
path = "src/main.rs"
[[test]]
name = "parse_examples"
path = "tests/parse_examples.rs"
[[test]]
name = "repl"
path = "tests/repl.rs"
[[test]]
name = "run_examples"
path = "tests/run_examples.rs"
[dependencies.ctrlc]
version = "3"
[dependencies.num-bigint]
version = "0.4"
[dependencies.num-integer]
version = "0.1"
[dependencies.num-rational]
version = "0.4"
features = ["num-bigint"]
[dependencies.num-traits]
version = "0.2"
[dependencies.rustemo]
version = "0.9.1"
[dependencies.rustyline]
version = "18"
[dependencies.thiserror]
version = "1"
[build-dependencies.rustemo-compiler]
version = "0.9.1"