[package]
edition = "2024"
rust-version = "1.92"
name = "weavy"
version = "0.2.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared lowered-program substrate for interpreters and copy-and-patch backends."
homepage = "https://facet.rs"
readme = "README.md"
keywords = [
"bytecode",
"interpreter",
"jit",
"stencil",
]
categories = [
"encoding",
"compilers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/facet-rs/facet"
[package.metadata."docs.rs"]
rustdoc-args = [
"--html-in-header",
"arborium-header.html",
]
[features]
default = []
jit = ["dep:copypatch"]
[lib]
name = "weavy"
path = "src/lib.rs"
[dependencies.copypatch]
version = "0.2.0-rc.3"
optional = true
[build-dependencies.copypatch]
version = "0.2.0-rc.3"
features = ["build"]
optional = true
[lints.clippy]
disallowed_methods = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(facet_no_doc)",
"cfg(kani)",
]