[package]
edition = "2021"
name = "polenta"
version = "0.1.2"
authors = ["erhant"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A toy language about polynomials over finite-fields"
readme = "README.md"
license = "MIT"
[features]
repl = [
"colored",
"rustyline",
]
[lib]
name = "polenta"
path = "src/lib.rs"
[[bin]]
name = "polenta"
path = "src/bin/repl.rs"
required-features = ["repl"]
[[example]]
name = "errors"
path = "examples/errors.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[test]]
name = "assert"
path = "tests/assert.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "fields"
path = "tests/fields.rs"
[[test]]
name = "polynomials"
path = "tests/polynomials.rs"
[[test]]
name = "statements"
path = "tests/statements.rs"
[dependencies.colored]
version = "2.1.0"
optional = true
[dependencies.lambdaworks-math]
version = "0.7.0"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.miette]
version = "7.2.0"
features = ["fancy"]
[dependencies.pest]
version = "2.7.12"
[dependencies.pest_derive]
version = "2.7.10"
[dependencies.rustyline]
version = "14.0.0"
optional = true
[dependencies.supports-color]
version = "3.0.0"
[dependencies.thiserror]
version = "1.0.62"