[package]
edition = "2024"
rust-version = "1.85"
name = "panproto-repl"
version = "0.49.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "REPL engine for panproto theories, terms, and morphisms. Front-end (with line editor and syntax highlighting) lives in panproto-cli's `schema theory repl` subcommand."
readme = "README.md"
license = "MIT"
repository = "https://github.com/panproto/panproto"
[lib]
name = "panproto_repl"
path = "src/lib.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dependencies.panproto-gat]
version = "0.49.4"
[dependencies.panproto-theory-dsl]
version = "0.49.4"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"