Initiated with cargo new irc
.
This commit is contained in:
commit
bc4041981e
3 changed files with 10 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/target
|
||||
/Cargo.lock
|
5
Cargo.toml
Normal file
5
Cargo.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
[package]
|
||||
|
||||
name = "irc"
|
||||
version = "0.0.1"
|
||||
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
|
3
src/lib.rs
Normal file
3
src/lib.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
#[test]
|
||||
fn it_works() {
|
||||
}
|
Loading…
Reference in a new issue