initial commit

This commit is contained in:
Martin Algesten
2017-12-10 13:32:53 +01:00
commit f1b9318994
5 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
target

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}

4
Cargo.lock generated Normal file
View File

@@ -0,0 +1,4 @@
[[package]]
name = "superagent"
version = "0.1.0"

6
Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "superagent"
version = "0.1.0"
authors = ["Martin Algesten <martin@algesten.se>"]
[dependencies]

7
src/lib.rs Normal file
View File

@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}