[package]
edition = "2021"
name = "xrcf"
version = "0.8.0"
authors = ["xrcf contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "eXtensible and Reusable Compiler Framework"
homepage = "https://xrcf.org"
readme = "README.md"
keywords = [
"compiler",
"framework",
]
categories = ["compilers"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/rikhuijzer/xrcf"
[lib]
name = "xrcf"
path = "src/lib.rs"
[[test]]
name = "arith"
path = "tests/arith.rs"
[[test]]
name = "canonicalize"
path = "tests/canonicalize.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[[bench]]
name = "func_to_llvm"
path = "benches/func_to_llvm.rs"
harness = false
[dependencies.anyhow]
version = "1.0.86"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.parking_lot]
version = "0.12"
features = ["deadlock_detection"]
[dependencies.rayon]
version = "1.10"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.wasmtime]
version = "28.0.0"
features = ["cranelift"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.indoc]
version = "2"
[features]
test-utils = []