Repository created.

This commit is contained in:
Daniel Abramov 2017-01-31 17:15:51 +01:00
commit a4315eb509
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "tokio-ws"
version = "0.1.0"
authors = ["Daniel Abramov <dabramov@snapview.de>"]
[dependencies]

6
src/lib.rs Normal file
View File

@ -0,0 +1,6 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}