193ad7ec5a
- Add docs/OPTIMIZATIONS.md: catalog of 14 optimization passes with status tracking and implementation roadmap - Configure workspace-level clippy and rustc lints in Cargo.toml - Add clippy.toml and deny.toml for clippy thresholds and dependency auditing (licenses, advisories, bans) - Set up pre-commit hook: cargo fmt, dprint, clippy, cargo deny, cargo machete - Update Justfile with deny/machete targets, dprint in fmt checks
16 lines
333 B
TOML
16 lines
333 B
TOML
[package]
|
|
name = "wafer-web"
|
|
description = "WAFER: WebAssembly Forth Engine in Rust - browser bindings"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["wafer-core"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
wafer-core = { path = "../core", version = "0.1.0" }
|