Skip to content

Commit 31420a7

Browse files
committed
cargo init
1 parent f3b240d commit 31420a7

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

.gitignore

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
1-
# Generated by Cargo
2-
# will have compiled files and executables
3-
/target/
4-
5-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6-
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
1+
target
72
Cargo.lock

Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "uom"
3+
version = "0.1.0"
4+
authors = ["Mike Boutin <[email protected]>"]
5+
description = "Units of measurement"
6+
#documentation = ""
7+
#homepage = ""
8+
repository = "https://github.com/iliekturtles/uom"
9+
readme = "README.md"
10+
keywords = ["uom", "units", "si", "International System of Units", "dimensional analysis"]
11+
license = "Apache-2.0/MIT"
12+
13+
[dependencies]

src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#[cfg(test)]
2+
mod tests {
3+
#[test]
4+
fn it_works() {
5+
}
6+
}

0 commit comments

Comments
 (0)