init new cargo project
This commit is contained in:
parent
5e89d1e888
commit
3ffefa32e1
|
@ -1,2 +1,6 @@
|
||||||
*.swp
|
*.swp
|
||||||
target/
|
target/
|
||||||
|
|
||||||
|
/target/
|
||||||
|
**/*.rs.bk
|
||||||
|
Cargo.lock
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "rustlings"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["olivia <olivia@fastmail.com>"]
|
||||||
|
|
||||||
|
[dependencies]
|
|
@ -0,0 +1,7 @@
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
assert_eq!(2 + 2, 4);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue