Browse Source

gempress: init

main
Garrit Franke 3 years ago
parent
commit
33f2b38e07
Signed by: garrit
GPG Key ID: 65586C4DDA55EA2C
  1. 5
      Cargo.lock
  2. 9
      lib/gempress/Cargo.toml
  3. 7
      lib/gempress/src/lib.rs

5
Cargo.lock generated

@ -0,0 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "astrofarm"
version = "0.1.0"

9
lib/gempress/Cargo.toml

@ -0,0 +1,9 @@
[package]
name = "gempress"
version = "0.1.0"
authors = ["Garrit Franke <garrit@slashdev.space>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

7
lib/gempress/src/lib.rs

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