Initiated with cargo new irc.

This commit is contained in:
Aaron Weiss 2014-09-10 16:23:09 -04:00
commit bc4041981e
3 changed files with 10 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/target
/Cargo.lock

5
Cargo.toml Normal file
View file

@ -0,0 +1,5 @@
[package]
name = "irc"
version = "0.0.1"
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]

3
src/lib.rs Normal file
View file

@ -0,0 +1,3 @@
#[test]
fn it_works() {
}