зеркало из
https://github.com/iharh/notes.git
synced 2025-11-03 23:26:09 +02:00
20 строки
495 B
Plaintext
20 строки
495 B
Plaintext
https://github.com/xiaoniu-578fa6bff964d005/duang
|
|
https://github.com/DenisKolodin/match_cast
|
|
|
|
https://ameo.link/blog/writing-a-hashmap-to-struct-procedural-macro-in-rust/
|
|
|
|
https://www.reddit.com/r/rust/comments/5q7ssv/long_list_of_externs/
|
|
|
|
macro_rules! externs {
|
|
( $( $x:ident ),* ) => {
|
|
$(
|
|
extern crate $x;
|
|
)*
|
|
};
|
|
}
|
|
|
|
externs![rocket, rocket_contrib, serde_json,
|
|
chrono, dotenv, postgres, r2d2,
|
|
r2d2_postgres, r2d2_diesel, tera,
|
|
serde_derive, toml, glob];
|