Skip to content

Commit

Permalink
date-time: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed Oct 11, 2021
1 parent 11d65de commit 2c98d55
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions date_time/.gitignore
@@ -0,0 +1 @@
/target/
7 changes: 7 additions & 0 deletions date_time/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions date_time/Cargo.toml
@@ -0,0 +1,8 @@
[package]
name = "date-time"
version = "0.0.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

0 comments on commit 2c98d55

Please sign in to comment.