Simple test project that sets up a hybrid cargo crate with a vite project

chore: pin to rust 1.90.0 or greater

Signed-off-by: Jonathan Basniak <9uknek65z@mozmail.com>

+2
+1
com-gm112-rust-testlibrary/Cargo.toml
··· 2 2 name = "com-gm112-rust-testlibrary" 3 3 version = "0.1.0" 4 4 edition = "2024" 5 + rust-version = "1.90.0" 5 6 6 7 #crate-type = ["cdylib", "rlib"] # cdylib for Wasm, rlib for Rust libraries 7 8
+1
com-gm112-rust-testproject/Cargo.toml
··· 2 2 name = "com-gm112-rust-testproject" 3 3 version = "0.1.0" 4 4 edition = "2024" 5 + rust-version = "1.90.0" 5 6 6 7 [dependencies] 7 8 com-gm112-rust-testlibrary = { version = "0.1.0", path = "../com-gm112-rust-testlibrary" }