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 @@ -26,6 +26,7 @@ members = [
"crates/ogar-doc-ir",
"crates/ogar-a2ui-frame",
"crates/ogar-from-docv1",
"crates/ogar-render-typst",
]

[workspace.package]
Expand Down
3 changes: 2 additions & 1 deletion crates/ogar-class-view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ description = "Bridge crate: lifts `ogar_vocab::Class` (canonical AR shape, code

[dependencies]
ogar-vocab = { path = "../ogar-vocab" }
lance-graph-contract = { git = "https://github.com/AdaWorldAPI/lance-graph", branch = "main" }
# FLOAT: branch = "main" → PR branch until lance-graph #776 merges (flip back to main then).
lance-graph-contract = { git = "https://github.com/AdaWorldAPI/lance-graph", branch = "claude/ogar-docir-architecture-jjzlig" }
3 changes: 2 additions & 1 deletion crates/ogar-doc-ir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ serde_json = "1.0"
# neutral IR never depends on any one consumer — the arrow points OUT, never in.
# Wired via `git branch = "main"`, the same float-then-flip form the sibling
# `ogar-class-view` / `ogar-from-ruff` / `ogar-render-askama` crates use.
lance-graph-contract = { git = "https://github.com/AdaWorldAPI/lance-graph", branch = "main", optional = true }
# FLOAT: branch = "main" → PR branch until lance-graph #776 merges (flip back to main then).
lance-graph-contract = { git = "https://github.com/AdaWorldAPI/lance-graph", branch = "claude/ogar-docir-architecture-jjzlig", optional = true }

[features]
default = []
Expand Down
2 changes: 2 additions & 0 deletions crates/ogar-doc-ir/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ use serde::{Deserialize, Serialize};
pub mod compose;
#[cfg(feature = "classview")]
pub mod project;
#[cfg(feature = "classview")]
pub mod resolve;

/// Perceptual-IR version marker. [`from_json`] refuses any other value.
/// A `doc.v2` is a NEW marker + (possibly) new [`RegionKind`]s, never a
Expand Down
Loading
Loading