[package]
edition = "2024"
rust-version = "1.85.0"
name = "opy-rs"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone OverPy-compatible .opy implementation with parsing, tooling, and bounded Workshop compilation."
readme = false
license = "AGPL-3.0-or-later"
[lib]
name = "opy_rs"
path = "src/lib.rs"
[[test]]
name = "compiler_api"
path = "tests/compiler_api.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "macro_integration"
path = "tests/macro_integration.rs"
[[test]]
name = "tooling"
path = "tests/tooling.rs"
[dependencies.libquickjs-ng-sys]
version = "0.13.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.workshop-rs]
version = "=0.1.16"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
unreachable_pub = "deny"
unsafe_op_in_unsafe_fn = "deny"