move rust code to own library for targeting
All checks were successful
continuous-integration/drone/push Build is passing

multiple environments
like wasm, tauri and more
put non wasm compatible features like rayon multithreading
behind feature flags
This commit is contained in:
2023-06-27 15:05:46 +02:00
parent c352ba7fd3
commit 6d2ffe6902
28 changed files with 5721 additions and 2 deletions

8
lib/something/Cargo.toml Normal file
View File

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

14
lib/something/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);
}
}