Basic package structure

This commit is contained in:
Kiana Sheibani 2023-08-26 03:37:24 -04:00
parent 1987cdaaf8
commit 44c21d95ae
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
9 changed files with 2098 additions and 0 deletions

12
scheme/Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "scheme"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cynic = "3.2"
[build-dependencies]
cynic-codegen = "3.2"

14
scheme/src/lib.rs Normal file
View file

@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}