hi, i’m vidhan! welcome to my new site and blog, rewritten from the ground up using rust. this site mainly uses two libraries, namely the http server, axum and the html library maud. one of the coolest features of this site, the code block syntax highlighting is powered by tree-sitter.
it also uses tailwind css for styling.
take a look at a cool code block example below!
#[cfg(test)]
mod tests {
use claims::assert_ok;
use super::*;
#[ignore = "don't want to spam the api"]
#[tokio::test]
async fn player_works() {
println!(
"{:#?}",
assert_ok!(AssistLeaders::<Player>::default().send().await)
);
}
}