init: initialize Yew app

This commit is contained in:
Ryan Mwangi 2024-12-04 15:24:10 +03:00
commit f6f821d339
3 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "compareware"
version = "0.1.0"
edition = "2021"
[dependencies]
yew = "0.20"
wasm-bindgen = "0.2"
nostr-sdk = "0.9"

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}