20 lines
547 B
TOML
20 lines
547 B
TOML
|
|
[package]
|
||
|
|
name = "cb-render-html"
|
||
|
|
edition.workspace = true
|
||
|
|
version.workspace = true
|
||
|
|
license-file.workspace = true
|
||
|
|
|
||
|
|
# ADR-0007 Decision 1: the browser is the renderer, so this crate has
|
||
|
|
# **no third-party dependencies at all** beyond what the game already
|
||
|
|
# carries. Adding one here needs an argument against ADR-0007 §Decision 3.
|
||
|
|
[dependencies]
|
||
|
|
cb-kernel.workspace = true
|
||
|
|
games-ground.workspace = true
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
# The coverage gate walks the serialized view; nothing else needs it.
|
||
|
|
serde_json.workspace = true
|