Files
rust_browser/crates/web_api/Cargo.toml
Zachary D. Rowitsch 9e6300d7a0 Implement ES modules with code review fixes (§3.4)
Add import/export parsing, module registry, bytecode opcodes, host
integration, and <script type="module"> HTML pipeline support. Includes
three rounds of code review with 21 remaining action items tracked in
the story file for follow-up.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-16 07:23:48 -04:00

18 lines
341 B
TOML

[package]
name = "web_api"
version = "0.1.0"
edition = "2021"
[dependencies]
dom = { path = "../dom" }
html = { path = "../html" }
js = { path = "../js" }
net = { path = "../net" }
selectors = { path = "../selectors" }
js_parser = { path = "../js_parser" }
shared = { path = "../shared" }
tracing.workspace = true
[lints]
workspace = true