web-api-cat 0.7.0

Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.0 opens the Storage chapter: `localStorage` and `sessionStorage` ship as Storage-shaped Objects exposing `getItem` / `setItem` / `removeItem` / `clear` / `key` plus a `length` accessor; the `window` global is now a proper Object whose `document` / `localStorage` / `sessionStorage` properties point at the matching top-level bindings. Hosts seed pre-eval and read post-eval via `lookup_local_storage` / `seed_storage` / `read_storage_items`, mirroring the v0.4 cookie pattern. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
[package]
name = "web-api-cat"
version = "0.7.0"
edition = "2024"
description = "Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat).  v0.7.0 opens the Storage chapter: `localStorage` and `sessionStorage` ship as Storage-shaped Objects exposing `getItem` / `setItem` / `removeItem` / `clear` / `key` plus a `length` accessor; the `window` global is now a proper Object whose `document` / `localStorage` / `sessionStorage` properties point at the matching top-level bindings.  Hosts seed pre-eval and read post-eval via `lookup_local_storage` / `seed_storage` / `read_storage_items`, mirroring the v0.4 cookie pattern.  Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri."
license = "MIT OR Apache-2.0"
keywords = ["dom", "fetch", "javascript", "boa", "type-driven"]
categories = ["web-programming"]

[dependencies]
boa-cat = "0.7"
html-cat = "0.1"
net-cat = "0.1"
dom-cat = "0.1"

[dev-dependencies]
proptest = "1"
ecma-lex-cat = "0.1"
ecma-parse-cat = "0.3"

[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
needless_pass_by_value = "warn"
manual_map = "warn"