summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-09-04 13:16:01 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-09-04 13:30:55 -0400
commitca37b1757a92e7b85fc434474642d1506dcd86a3 (patch)
tree47075badf3f2cd84aa4ca986e92e3beaef02b12a /Cargo.lock
parent1c2d88434021f25c43c2503cfce72ef5336c288e (diff)
Add playing card representation
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock14
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 526e714..4fbc561 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -401,6 +401,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
[[package]]
+name = "wasm-logger"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "074649a66bb306c8f2068c9016395fa65d8e08d2affcbf95acf3c24c3ab19718"
+dependencies = [
+ "log",
+ "wasm-bindgen",
+ "web-sys",
+]
+
+[[package]]
name = "web-sys"
version = "0.3.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -414,6 +425,9 @@ dependencies = [
name = "webapp"
version = "0.1.0"
dependencies = [
+ "console_error_panic_hook",
+ "log",
+ "wasm-logger",
"yew",
]