Inline the output of Rust code into your code. # Examples ```no_run #[macro_use] extern crate inline_rust; // Compiles using cargo const CONST_HASH: &'static str = inline_rust!( r#" [dependencies] sha2 = "0.9.8" "#, { use sha2::Digest; let mut sum: i32 = 0; for n in 0..30 { sum += n; } format!("\"{:x}\"", sha2::Sha256::digest(&sum.to_ne_bytes())) } ); // Compiles using rustc const CONST_FOR_
(tokens: TokenStream)
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected