Setup basic dependencies

This commit is contained in:
LDprg
2023-07-13 14:50:32 +02:00
parent 2b294a678b
commit 8aff1aa9a1
6 changed files with 14 additions and 13 deletions

View File

@@ -6,3 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
winapps = { path = "../winapps" }

View File

@@ -1,3 +1,5 @@
use winapps;
fn main() {
println!("Hello, world!");
println!("Test lib: {}", winapps::add(1, 2));
}