Skip to content

Instantly share code, notes, and snippets.

@cramertj
Created August 3, 2018 18:12
Show Gist options
  • Save cramertj/d7b3d84dcab6c6e9a45842781df35a23 to your computer and use it in GitHub Desktop.
Save cramertj/d7b3d84dcab6c6e9a45842781df35a23 to your computer and use it in GitHub Desktop.
cargo-features = ["edition"]
[package]
name = "foo"
edition = "2018"
version = "0.1.0"
[dependencies]
rand = "0.5"
/// [link](::rand::random)
pub fn foo() {}
fn main() {
println!("Hello, world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment