[package]
edition = "2024"
rust-version = "1.90"
name = "rsaeb"
version = "0.9.0"
build = false
include = [
"/src/**",
"/tests/**",
"/README.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/clippy.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std + alloc interpreter for A=B ordered rewrite programs."
documentation = "https://docs.rs/rsaeb"
readme = "README.md"
keywords = [
"a-b",
"interpreter",
"rewrite",
"no-std",
]
categories = [
"compilers",
"parser-implementations",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jungamer-64/rsaeb"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "rsaeb"
path = "src/lib.rs"
[[test]]
name = "public_errors"
path = "tests/public_errors.rs"
[[test]]
name = "public_execution"
path = "tests/public_execution.rs"
[[test]]
name = "public_inspect"
path = "tests/public_inspect.rs"
[[test]]
name = "public_limits"
path = "tests/public_limits.rs"
[[test]]
name = "public_program"
path = "tests/public_program.rs"
[[test]]
name = "public_runtime_input"
path = "tests/public_runtime_input.rs"
[[test]]
name = "public_trace"
path = "tests/public_trace.rs"
[lints.clippy]
alloc_instead_of_core = "deny"
allow_attributes_without_reason = "deny"
arithmetic_side_effects = "deny"
as_conversions = "deny"
expect_used = "deny"
indexing_slicing = "deny"
large_stack_arrays = "deny"
large_stack_frames = "deny"
let_underscore_must_use = "deny"
let_underscore_untyped = "deny"
missing_docs_in_private_items = "warn"
missing_errors_doc = "deny"
missing_panics_doc = "deny"
panic = "deny"
panic_in_result_fn = "deny"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
string_slice = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.rust]
missing_debug_implementations = "deny"
missing_docs = "deny"
unconditional_panic = "deny"
unsafe_code = "forbid"
unused_must_use = "deny"
warnings = "deny"
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_html_tags = "deny"
invalid_rust_codeblocks = "deny"
missing_crate_level_docs = "deny"
private_doc_tests = "deny"
redundant_explicit_links = "deny"
unescaped_backticks = "deny"