makeover-webview 0.71.0

The webview renderer for makeover-layout. Emits CSS, and is the one renderer that needs no palette: var() is the late binding, so resolution stays with the browser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Nothing is built here. The file exists because `links` in Cargo.toml
//! requires it, and `links` is what makes two copies of this renderer in one
//! dependency graph a resolver error rather than a silent second copy.
//!
//! This crate decides class names. Two versions in one build means the
//! stylesheet a build script generates and the markup the runtime emits can
//! come off different vocabularies and still compile: one build.rs run writing
//! layout.css from one version and tables.css from another.
//!
//! The guard only bites between versions that both declare `links`.

fn main() {
    println!("cargo::rerun-if-changed=build.rs");
}