initial commit

This commit is contained in:
Dmitriy Pleshevskiy 2021-01-31 02:08:06 +03:00
commit d22af2231c
3 changed files with 18 additions and 0 deletions

2
migra-core/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

9
migra-core/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "migra-core"
version = "0.1.0"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

7
migra-core/src/lib.rs Normal file
View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}