# Hust Hust is an HTML-first way to embed Rust in HTML. ## This Crate This crate exports a function called `preprocess_and_generate_rust_code`. It is meant to be used in your own proc macros. To use hust without implementing your own macro, you should instead use the crate `hust-macro`. ## Example Usage ```

User

<%= &user.username %>
``` Or for more complex usage: ```

All Users

<%= &users.len().to_string() %> users found.
<% for user in users { %>
<%= &user.username %>
<% } %> New User ```