stak-interpret 0.12.11

Stak Scheme bytecode interpreter
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "stak-interpret"
version = "0.12.11"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stak Scheme bytecode interpreter"
readme = "README.md"
keywords = [
    "interpreter",
    "language",
    "scheme",
]
categories = [
    "compilers",
    "no-std",
    "no-std::no-alloc",
    "wasm",
]
license = "MIT"
repository = "https://github.com/raviqqe/stak"

[features]
default = ["float"]
float = ["stak-vm/float"]
float62 = ["stak-vm/float62"]
gc_always = ["stak-vm/gc_always"]
trace_instruction = ["stak-vm/trace_instruction"]
trace_memory = ["stak-vm/trace_memory"]

[[bin]]
name = "stak-interpret"
path = "src/main.rs"

[dependencies.clap]
version = "4.5.58"
features = ["derive"]

[dependencies.main_error]
version = "0.1.2"

[dependencies.stak-configuration]
version = "0.12.11"

[dependencies.stak-device]
version = "0.12.11"
features = ["std"]

[dependencies.stak-file]
version = "0.12.11"
features = ["std"]

[dependencies.stak-process-context]
version = "0.12.11"
features = ["std"]

[dependencies.stak-r7rs]
version = "0.12.11"

[dependencies.stak-time]
version = "0.12.11"
features = ["std"]

[dependencies.stak-vm]
version = "0.12.11"

[lints.clippy]
alloc_instead_of_core = "deny"
cargo = "deny"
complexity = "deny"
correctness = "deny"
dbg_macro = "deny"
derive_partial_eq_without_eq = "deny"
equatable_if_let = "deny"
explicit_deref_methods = "deny"
if_not_else = "deny"
manual_let_else = "deny"
missing_const_for_fn = "deny"
missing_panics_doc = "deny"
perf = "deny"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
style = "deny"
suspicious = "deny"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
uninlined_format_args = "deny"
unnecessary_safety_comment = "deny"
unused_self = "deny"
use_self = "deny"

[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1

[lints.rust]
missing_docs = "deny"
warnings = "deny"

[profile.dev]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true

[profile.dev.build-override]
opt-level = 3
debug-assertions = false
overflow-checks = false

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true

[profile.release.build-override]
opt-level = 3
debug-assertions = false
overflow-checks = false