cb5d83b1f7
- Add gioser-graph-web dependency to gioser-web - After markdown loads, mount SVG semantic graph below content - Graph fetches from api.gioser.net/graph endpoint - Uses Qdrant k-NN edges, colored by camino - Callback navigation placeholder (will be wired in next commit)
43 lines
992 B
TOML
43 lines
992 B
TOML
[package]
|
|
name = "gioser-web"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
gioser-canvas-web = { path = "../../modules/gioser/gioser-canvas-web" }
|
|
fana-md-reader-web = { path = "../../modules/fana/fana-md-reader-web" }
|
|
revista-web = { path = "../../modules/revista/revista-web" }
|
|
barra-web = { path = "../../modules/barra/barra-web" }
|
|
gioser-graph-web = { path = "../../modules/gioser/gioser-graph-web" }
|
|
wasm-bindgen.workspace = true
|
|
wasm-bindgen-futures.workspace = true
|
|
js-sys.workspace = true
|
|
|
|
[dependencies.web-sys]
|
|
workspace = true
|
|
features = [
|
|
"Window",
|
|
"Document",
|
|
"Element",
|
|
"Node",
|
|
"HtmlElement",
|
|
"HtmlCanvasElement",
|
|
"CssStyleDeclaration",
|
|
"DomTokenList",
|
|
"DomRect",
|
|
"Event",
|
|
"EventTarget",
|
|
"MouseEvent",
|
|
"PointerEvent",
|
|
"KeyboardEvent",
|
|
"NodeList",
|
|
"Performance",
|
|
"console",
|
|
]
|