Skip to content

Commit

Permalink
Merge pull request #21 from coilysiren/with-react
Browse files Browse the repository at this point in the history
Adds React frontend
  • Loading branch information
coilysiren committed Nov 24, 2023
2 parents 190c808 + b170b09 commit db1784f
Show file tree
Hide file tree
Showing 21 changed files with 6,041 additions and 12,792 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
wasm-pack.log
target/
dist/
pkg/
node_modules/
58 changes: 18 additions & 40 deletions Cargo.lock

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

9 changes: 3 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,13 @@ license = "AGPL"
crate-type = ["cdylib", "rlib"]
path = "src/rust/lib.rs"

[features]
default = ["console_error_panic_hook"]

[dependencies]
console_error_panic_hook = { version = "^0.1", optional = true }
console_error_panic_hook = "^0.1"
specs = "^0.12"
specs-derive = "^0.2"
rand = "^0.5"
wasm-bindgen = "^0.2"
getrandom = { version = "^0.2", features = ["js"] }
getrandom = { version = "^0.2", features = ["js", "wasm-bindgen"] }
rand = "^0.8"

[dev-dependencies]
cargo-watch = "^7"
Expand Down
Loading

0 comments on commit db1784f

Please sign in to comment.