Skip to content

Commit

Permalink
Add basic game frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgroenwoldt committed Mar 20, 2023
1 parent 5437dae commit 618e2dd
Show file tree
Hide file tree
Showing 15 changed files with 709 additions and 255 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/dist/
/target/
gifs
gif_generator/vhs
gif_generator/ttyd
103 changes: 82 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 12 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
[package]
name = "trunk-template"
name = "helix-shortcut-quiz"
authors = ["Tom Groenwoldt <[email protected]>"]
version = "0.1.0"
edition = "2021"
description = "Template for starting a Yew project using Trunk"
description = "A quiz web application for learning the helix editor shortcuts."
readme = "README.md"
repository = "https://github.com/yewstack/yew-trunk-minimal-template"
license = "MIT OR Apache-2.0"
keywords = ["yew", "trunk"]
categories = ["gui", "wasm", "web-programming"]
repository = "https://github.com/tomgroenwoldt/shortcut-quiz"
keywords = ["helix", "editor", "quiz", "game"]
categories = ["game", "wasm", "web-programming", "editor"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
getrandom = { version = "0.2.8", features = ["js"] }
gloo-console = "0.2.3"
gloo-events = "0.1.2"
rand = "0.8.5"
wasm-bindgen = "0.2.84"
web-sys = "0.3.61"
yew = { version="0.20", features=["csr"] }
Loading

0 comments on commit 618e2dd

Please sign in to comment.