Simon Bourne

Results 6 issues of Simon Bourne

Hi, It would be great to exclude setup/teardown code from benchmark measurements. Using `callgrind` rather than `cachegrind` looks like it allows you to zero and dump the counters at particular...

This would allow `moxie-dom` users to use third party web components. It looks like making `html_element` public would be a good direction to support this. - [ ] @anp: you...

Notable differences to other Rust frameworks: - Plain Rust: No macro DSL to learn. - Currently the fastest high level Rust framework on

Paste will produce a keyword instead of an identifier in some cases: ```rust use paste::paste; macro_rules! empty_items{ ($name:ident $(- $name_tail:ident)*) => { paste!{ struct [< $name:camel $( $name_tail)* >]; fn...

This updates Silkenweb to version 0.8.0. Thanks

Hi, any chance you'd be happy to add support for `str` arrays? Something like: ```rust macro_rules! tws{ [$($class:literal),* $(,)?] => { [$($crate::tw!($class)),*] } } ``` so I could write: ```rust...