Add initial sibil Rust project

This commit is contained in:
Eryn Wells 2016-12-19 14:01:55 -08:00
parent 0416c6ac7d
commit a5220fdbaf
2 changed files with 9 additions and 0 deletions

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "sibil"
version = "0.1.0"
authors = ["Eryn Wells <eryn@erynwells.me>"]
[dependencies]

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}