Initial commit

This commit is contained in:
2025-02-06 14:33:22 +01:00
commit c31a19f09a
10 changed files with 443 additions and 0 deletions

7
shared/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "shared"
version = "0.1.0"
edition = "2024"
[dependencies]
stabby = { workspace = true }

11
shared/src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
#[stabby::stabby]
pub struct Input {
pub a: i32,
pub b: i32,
}
#[stabby::stabby]
pub struct Output {
pub sum: i32,
pub product: i32,
}