Browse Source

Init

master
Lev 2 years ago
parent
commit
b08920c116
  1. 13
      .gitignore
  2. 8
      Cargo.toml
  3. 2
      README.md
  4. 8
      src/lib.rs

13
.gitignore vendored

@ -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

8
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]

2
README.md

@ -1,3 +1,3 @@
# core
# Agorata Core
The Core of Agorata written in Rust

8
src/lib.rs

@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
Loading…
Cancel
Save