[package]
edition = "2024"
name = "patch-prolog-compiler"
version = "0.4.3"
authors = ["Ed Sweeney <ed@onextent.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone Prolog compiler (plgc) — compiles .pl to native binaries via LLVM"
documentation = "https://docs.navicore.tech/patch-prolog/"
readme = false
license = "MIT"
repository = "https://git.navicore.tech/navicore/patch-prolog"
resolver = "2"
[features]
wasm = []
[lib]
name = "plgc"
path = "src/lib.rs"
[[bin]]
name = "plgc"
path = "src/main.rs"
[[test]]
name = "arith"
path = "tests/arith.rs"
[[test]]
name = "binary_size"
path = "tests/binary_size.rs"
[[test]]
name = "capabilities"
path = "tests/capabilities.rs"
[[test]]
name = "control"
path = "tests/control.rs"
[[test]]
name = "control_arith"
path = "tests/control_arith.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "fact_table"
path = "tests/fact_table.rs"
[[test]]
name = "facts_rules"
path = "tests/facts_rules.rs"
[[test]]
name = "golden_ir"
path = "tests/golden_ir.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "iso_atom_concat"
path = "tests/iso_atom_concat.rs"
[[test]]
name = "lists_stdlib"
path = "tests/lists_stdlib.rs"
[[test]]
name = "operators"
path = "tests/operators.rs"
[[test]]
name = "terms_atoms"
path = "tests/terms_atoms.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.plg-frontend]
version = "=0.4.3"
package = "patch-prolog-frontend"
[dependencies.plg-shared]
version = "=0.4.3"
package = "patch-prolog-shared"
[dependencies.tempfile]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.plg-runtime]
version = "=0.4.3"
package = "patch-prolog-runtime"
[build-dependencies.toml]
version = "1.0"