Skip to content

Commit

Permalink
cargo new localstoragefs --lib
Browse files Browse the repository at this point in the history
  • Loading branch information
iceiix committed May 29, 2019
0 parents commit 3a9699c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
**/*.rs.bk
Cargo.lock
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "localstoragefs"
version = "0.1.0"
authors = ["ice_iix <[email protected]>"]
edition = "2018"

[dependencies]
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

0 comments on commit 3a9699c

Please sign in to comment.