diff options
| author | Brian Cully <bjc@spork.org> | 2025-08-22 11:39:14 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-08-22 11:39:14 -0400 |
| commit | 40352318ad887ad0bab7c9a3d22695bbcbe9f738 (patch) | |
| tree | 2d9822c1762cbc0852114149539abfa21185cc93 /Cargo.lock | |
| parent | a1c946b747325b4d7df778ebc70112338482f143 (diff) | |
| download | automathon-40352318ad887ad0bab7c9a3d22695bbcbe9f738.tar.gz automathon-40352318ad887ad0bab7c9a3d22695bbcbe9f738.zip | |
start hooking the web ui up to rust
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -6,6 +6,8 @@ version = 4 name = "automathon" version = "0.1.0" dependencies = [ + "console_log", + "log", "wasm-bindgen", "web-sys", ] @@ -23,6 +25,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" [[package]] +name = "console_log" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f" +dependencies = [ + "log", + "web-sys", +] + +[[package]] name = "js-sys" version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" |
