bare rust crate

This commit is contained in:
MIIRC 2020-10-28 14:58:10 -04:00
parent bb339d76ca
commit 0f92bdc9d0
2 changed files with 16 additions and 0 deletions

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "pigeonrs_core"
version = "0.1.0"
authors = ["Michael Christenson II <michael@datagrail.io>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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);
}
}