Created
April 9, 2019 13:52
-
-
Save aep/30fb1f5ca2ab879345c257e64f18b406 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "burpi" | |
version = "0.1.0" | |
authors = ["Arvid E. Picciani <[email protected]>"] | |
edition = "2018" | |
[dependencies] | |
carrier = "*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate carrier; | |
use std::env; | |
fn main() { | |
let _ : carrier::identity::Identity = env::args().nth(1).unwrap().parse().unwrap(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment