commit 5e91fe7bd3ca3a51ea8bbd7679cc85f96487bae5 Author: Kristofers Solo Date: Mon Sep 22 12:34:32 2025 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5b6cd0c --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +#--------------------------------------------------# +# The following was generated with gitignore.nvim: # +#--------------------------------------------------# +# Gitignore for the following technologies: Rust + +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..71aeea5 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "captra" +authors = ["Kristofers Solo "] +version = "0.1.0" +edition = "2024" +repository = "https://github.com/kristoferssolo/captra" +description = "Deterministic WASM plugin host with traceable repros" +license = "MIT OR Apache-2.0" +keywords = ["wasm", "sandbox", "capabilities", "plugins", "traces"] +categories = ["cryptography::randomness", "encoding"] + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..b93cf3f --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,14 @@ +pub fn add(left: u64, right: u64) -> u64 { + left + right +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn it_works() { + let result = add(2, 2); + assert_eq!(result, 4); + } +}