diff --git a/.gitignore b/.gitignore index 3ca43ae..5ac4ffa 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,16 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + + +# Added by cargo + +/target + + +# Added by cargo +# +# already existing elements were commented out + +#/target +/Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..9fb70e4 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "agorata" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/README.md b/README.md index 21dfb8f..16767d8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# core +# Agorata Core -The Core of Agorata written in Rust \ No newline at end of file +The Core of Agorata written in Rust diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..1b4a90c --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,8 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + let result = 2 + 2; + assert_eq!(result, 4); + } +}