aanyx 0.2.0

With this crate, you can easily create a modular Rust application that can dynamically load functions and plugins at runtime.
Documentation
1
2
3
4
5
fn main() {
  // Export the environment variable RUSTC_VERSION, so it can be imported as const &str at compile time
  let version = rustc_version::version().unwrap();
  println!("cargo:rustc-env=RUSTC_VERSION={}", version);
}