feat: add new crates ui-gpui and ui-iced to workspace

This commit is contained in:
uttarayan21
2025-11-18 15:56:53 +05:30
parent c2fdade4d9
commit c312df3db2
8 changed files with 11408 additions and 90 deletions

6
ui-gpui/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "ui-gpui"
version = "0.1.0"
edition = "2024"
[dependencies]

14
ui-gpui/src/lib.rs Normal file
View File

@@ -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);
}
}