From ed827859f36ff5cc9b2360284b92cb56c5b88d41 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 9 Apr 2023 14:38:27 +0300 Subject: refactor: use html-page crate to represent HTML Sponsored-by: author --- build.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'build.rs') diff --git a/build.rs b/build.rs index 52d9f76..9a45016 100644 --- a/build.rs +++ b/build.rs @@ -1,5 +1,9 @@ fn main() { println!("cargo:rerun-if-changed=src/pagespec.lalrpop"); + println!("building parser with larlpop"); lalrpop::process_root().unwrap(); + println!("built parser with larlpop successfully"); + println!("generating code with Subplot"); subplot_build::codegen("riki.subplot").expect("failed to generate code with Subplot"); + println!("generated code with Subplot successfully"); } -- cgit v1.2.1