Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ members = [
"crates/ogar-auth",
"crates/ogar-encryption",
"crates/ogar-doc-ir",
"crates/ogar-a2ui-frame",
"crates/ogar-from-docv1",
]

Expand Down
17 changes: 17 additions & 0 deletions crates/ogar-a2ui-frame/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "ogar-a2ui-frame"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
rust-version.workspace = true
description = "The addressed-surface wire frames for a2ui screen addressing (W1 of docs/A2UI-SCREEN-ADDRESSING-PROPOSAL.md): down = (GUID key 16 B, wide mask delta, changed LE values), up = ActionInvocation refs. LE-first per the Firewall (ADR-022/023) — zero dependencies in the hot path; serde is an optional membrane feature. Closed frame vocabulary + version gate, mirroring ogar-doc-ir discipline."

[features]
default = []
# Membrane-only: JSON debug/interchange at the edge. NEVER the hot path.
serde = ["dep:serde"]

[dependencies]
serde = { workspace = true, optional = true }
Loading
Loading