diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index c7c45ff..742db2e 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -1,4 +1,4 @@ -name: Gitea Actions Demo +name: Monorepo build run-name: ${{ gitea.actor }} is testing out Gitea Actions on: [push] diff --git a/Cargo.lock b/Cargo.lock index d871276..e203255 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,9 +121,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.96" +version = "1.0.97" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4" +checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f" [[package]] name = "arrayvec" @@ -195,7 +195,7 @@ dependencies = [ "futures-lite", "parking", "polling", - "rustix", + "rustix 0.38.44", "slab", "tracing", "windows-sys 0.59.0", @@ -214,9 +214,9 @@ dependencies = [ [[package]] name = "async-std" -version = "1.13.0" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615" +checksum = "730294c1c08c2e0f85759590518f6333f0d5a0a766a27d519c1b244c3dfd8a24" dependencies = [ "async-channel 1.9.0", "async-global-executor", @@ -229,7 +229,7 @@ dependencies = [ "futures-lite", "gloo-timers", "kv-log-macro", - "log 0.4.26", + "log 0.4.27", "memchr", "once_cell", "pin-project-lite", @@ -246,13 +246,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.86" +version = "0.1.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "644dd749086bf3771a2fbc5f256fdb982d53f011c7d5d560304eafeecebce79d" +checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -277,7 +277,7 @@ dependencies = [ "base64ct", "clap", "cool_asserts", - "serde 1.0.218", + "serde 1.0.219", "sha2", "sqlx", "thiserror 1.0.69", @@ -300,6 +300,72 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +[[package]] +name = "axum" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8" +dependencies = [ + "axum-core", + "axum-macros", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "http-body-util", + "hyper 1.6.0", + "hyper-util", + "itoa", + "matchit", + "memchr", + "mime 0.3.17", + "percent-encoding 2.3.1", + "pin-project-lite", + "rustversion", + "serde 1.0.219", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper 1.0.2", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733" +dependencies = [ + "bytes", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "http-body-util", + "mime 0.3.17", + "pin-project-lite", + "rustversion", + "sync_wrapper 1.0.2", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-macros" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.100", +] + [[package]] name = "az" version = "1.2.1" @@ -340,6 +406,12 @@ dependencies = [ "safemem", ] +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + [[package]] name = "base64" version = "0.21.7" @@ -354,9 +426,18 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.6.0" +version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" +checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3" + +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde 1.0.219", +] [[package]] name = "bindgen" @@ -376,7 +457,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -424,7 +505,7 @@ version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" dependencies = [ - "serde 1.0.218", + "serde 1.0.219", ] [[package]] @@ -463,9 +544,9 @@ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" [[package]] name = "bytemuck" -version = "1.21.0" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" +checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540" [[package]] name = "byteorder" @@ -475,9 +556,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "cairo-rs" @@ -506,9 +587,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.15" +version = "1.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af" +checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a" dependencies = [ "shlex", ] @@ -552,7 +633,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" name = "changeset" version = "0.1.0" dependencies = [ - "uuid 1.15.1", + "uuid 1.16.0", ] [[package]] @@ -565,7 +646,7 @@ dependencies = [ "iana-time-zone", "js-sys", "num-traits", - "serde 1.0.218", + "serde 1.0.219", "wasm-bindgen", "windows-link", ] @@ -579,7 +660,7 @@ dependencies = [ "chrono", "chrono-tz-build", "phf 0.11.3", - "serde 1.0.218", + "serde 1.0.219", ] [[package]] @@ -606,9 +687,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.31" +version = "4.5.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767" +checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff" dependencies = [ "clap_builder", "clap_derive", @@ -616,9 +697,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.31" +version = "4.5.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863" +checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489" dependencies = [ "anstream", "anstyle", @@ -628,14 +709,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.28" +version = "4.5.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed" +checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -680,7 +761,7 @@ version = "0.1.0" dependencies = [ "config-derive", "cool_asserts", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "thiserror 1.0.69", ] @@ -693,6 +774,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "console_error_panic_hook" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" +dependencies = [ + "cfg-if", + "wasm-bindgen", +] + [[package]] name = "const-default" version = "1.0.0" @@ -720,7 +811,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" dependencies = [ - "time 0.3.37", + "time 0.3.41", "version_check 0.9.5", ] @@ -796,7 +887,7 @@ checksum = "e37549a379a9e0e6e576fd208ee60394ccb8be963889eebba3ffe0980364f472" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -907,7 +998,7 @@ dependencies = [ "gio 0.18.4", "glib 0.18.5", "gtk4", - "serde 1.0.218", + "serde 1.0.219", "serde_yml", ] @@ -953,7 +1044,7 @@ dependencies = [ "libadwaita", "memorycache", "reqwest", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "tokio", "unic-langid", @@ -994,9 +1085,9 @@ dependencies = [ [[package]] name = "deranged" -version = "0.3.11" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058" dependencies = [ "powerfmt", ] @@ -1021,7 +1112,7 @@ checksum = "2517b0555262aeeda0d107a40ecfbbcf185921180ffb4acf316ebe0887467e26" dependencies = [ "generic-array 0.11.2", "num-traits", - "serde 1.0.218", + "serde 1.0.219", "typenum", ] @@ -1033,7 +1124,7 @@ checksum = "a0b0a86c5d31c93238ff4b694fa31f3acdf67440770dc314c57d90e433914397" dependencies = [ "generic-array 0.14.7", "num-traits", - "serde 1.0.218", + "serde 1.0.219", "typenum", ] @@ -1045,7 +1136,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1056,11 +1147,11 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" [[package]] name = "either" -version = "1.14.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" dependencies = [ - "serde 1.0.218", + "serde 1.0.219", ] [[package]] @@ -1132,7 +1223,7 @@ dependencies = [ "chrono", "chrono-tz", "dimensioned 0.7.0", - "serde 1.0.218", + "serde 1.0.219", "serde_derive", "serde_json", "tempfile", @@ -1157,7 +1248,7 @@ checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" dependencies = [ "humantime", "is-terminal", - "log 0.4.26", + "log 0.4.27", "regex", "termcolor", ] @@ -1208,9 +1299,9 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.3" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ "event-listener 5.4.0", "pin-project-lite", @@ -1272,12 +1363,12 @@ dependencies = [ "hex-string", "http 0.2.12", "image 0.23.14", - "log 0.4.26", + "log 0.4.27", "logger", "mime 0.3.17", "mime_guess 2.0.5", "pretty_env_logger", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "sha2", "tempdir", @@ -1403,9 +1494,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "foldhash" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" [[package]] name = "foreign-types" @@ -1455,7 +1546,7 @@ checksum = "e99b8b3c28ae0e84b604c75f721c21dc77afb3706076af5e8216d15fd1deaae3" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1467,7 +1558,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1478,7 +1569,7 @@ dependencies = [ "chrono-tz", "dimensioned 0.8.0", "emseries", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "tempfile", ] @@ -1578,7 +1669,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1705,20 +1796,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", + "js-sys", "libc", "wasi 0.11.0+wasi-snapshot-preview1", + "wasm-bindgen", ] [[package]] name = "getrandom" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8" +checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" dependencies = [ "cfg-if", "libc", - "wasi 0.13.3+wasi-0.2.2", - "windows-targets 0.52.6", + "r-efi", + "wasi 0.14.2+wasi-0.2.4", ] [[package]] @@ -1882,7 +1975,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1892,10 +1985,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "715601f8f02e71baef9c1f94a657a9a77c192aea6097cf9ae7e5e177cd8cde68" dependencies = [ "heck 0.5.0", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1924,6 +2017,154 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" +[[package]] +name = "gloo" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d15282ece24eaf4bd338d73ef580c6714c8615155c4190c781290ee3fa0fd372" +dependencies = [ + "gloo-console", + "gloo-dialogs", + "gloo-events", + "gloo-file", + "gloo-history", + "gloo-net 0.5.0", + "gloo-render", + "gloo-storage", + "gloo-timers", + "gloo-utils", + "gloo-worker", +] + +[[package]] +name = "gloo-console" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a17868f56b4a24f677b17c8cb69958385102fa879418052d60b50bc1727e261" +dependencies = [ + "gloo-utils", + "js-sys", + "serde 1.0.219", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gloo-dialogs" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf4748e10122b01435750ff530095b1217cf6546173459448b83913ebe7815df" +dependencies = [ + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gloo-events" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27c26fb45f7c385ba980f5fa87ac677e363949e065a083722697ef1b2cc91e41" +dependencies = [ + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gloo-file" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97563d71863fb2824b2e974e754a81d19c4a7ec47b09ced8a0e6656b6d54bd1f" +dependencies = [ + "gloo-events", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gloo-history" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "903f432be5ba34427eac5e16048ef65604a82061fe93789f2212afc73d8617d6" +dependencies = [ + "getrandom 0.2.15", + "gloo-events", + "gloo-utils", + "serde 1.0.219", + "serde-wasm-bindgen", + "serde_urlencoded", + "thiserror 1.0.69", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gloo-net" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43aaa242d1239a8822c15c645f02166398da4f8b5c4bae795c1f5b44e9eee173" +dependencies = [ + "futures-channel", + "futures-core", + "futures-sink", + "gloo-utils", + "http 0.2.12", + "js-sys", + "pin-project", + "serde 1.0.219", + "serde_json", + "thiserror 1.0.69", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "gloo-net" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580" +dependencies = [ + "futures-channel", + "futures-core", + "futures-sink", + "gloo-utils", + "http 1.3.1", + "js-sys", + "pin-project", + "serde 1.0.219", + "serde_json", + "thiserror 1.0.69", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "gloo-render" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56008b6744713a8e8d98ac3dcb7d06543d5662358c9c805b4ce2167ad4649833" +dependencies = [ + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gloo-storage" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a" +dependencies = [ + "gloo-utils", + "js-sys", + "serde 1.0.219", + "serde_json", + "thiserror 1.0.69", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "gloo-timers" version = "0.3.0" @@ -1936,6 +2177,50 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "gloo-utils" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" +dependencies = [ + "js-sys", + "serde 1.0.219", + "serde_json", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gloo-worker" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "085f262d7604911c8150162529cefab3782e91adb20202e8658f7275d2aefe5d" +dependencies = [ + "bincode", + "futures", + "gloo-utils", + "gloo-worker-macros", + "js-sys", + "pinned", + "serde 1.0.219", + "thiserror 1.0.69", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "gloo-worker-macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "956caa58d4857bc9941749d55e4bd3000032d8212762586fa5705632967140e7" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro2", + "quote", + "syn 2.0.100", +] + [[package]] name = "gm-control-panel" version = "0.1.0" @@ -1949,7 +2234,7 @@ dependencies = [ "glib-build-tools 0.16.3", "gtk4", "libadwaita", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "tokio", ] @@ -1959,7 +2244,7 @@ name = "gm-dash" version = "0.1.0" dependencies = [ "pipewire", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "tokio", "warp", @@ -2125,9 +2410,9 @@ dependencies = [ [[package]] name = "half" -version = "2.4.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" +checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1" dependencies = [ "cfg-if", "crunchy", @@ -2220,6 +2505,12 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +[[package]] +name = "hermit-abi" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e" + [[package]] name = "hex" version = "0.4.3" @@ -2285,9 +2576,9 @@ dependencies = [ [[package]] name = "http" -version = "1.2.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" +checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" dependencies = [ "bytes", "fnv", @@ -2306,10 +2597,33 @@ dependencies = [ ] [[package]] -name = "httparse" -version = "1.10.0" +name = "http-body" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2d708df4e7140240a16cd6ab0ab65c972d7433ab77819ea693fde9c43811e2a" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http 1.3.1", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http 1.3.1", + "http-body 1.0.1", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "httpdate" @@ -2319,9 +2633,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "humantime" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" +checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f" [[package]] name = "hyper" @@ -2354,7 +2668,7 @@ dependencies = [ "futures-util", "h2", "http 0.2.12", - "http-body", + "http-body 0.4.6", "httparse", "httpdate", "itoa", @@ -2366,6 +2680,25 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", +] + [[package]] name = "hyper-tls" version = "0.5.0" @@ -2380,15 +2713,32 @@ dependencies = [ ] [[package]] -name = "iana-time-zone" -version = "0.1.61" +name = "hyper-util" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" +checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" +dependencies = [ + "bytes", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "hyper 1.6.0", + "pin-project-lite", + "tokio", + "tower-service", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.62" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", + "log 0.4.27", "wasm-bindgen", "windows-core", ] @@ -2432,7 +2782,7 @@ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" dependencies = [ "displaydoc", "litemap", - "serde 1.0.218", + "serde 1.0.219", "tinystr", "writeable", "zerovec", @@ -2454,9 +2804,9 @@ dependencies = [ [[package]] name = "icu_locid_transform_data" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" +checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d" [[package]] name = "icu_normalizer" @@ -2478,9 +2828,9 @@ dependencies = [ [[package]] name = "icu_normalizer_data" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" +checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7" [[package]] name = "icu_properties" @@ -2499,9 +2849,9 @@ dependencies = [ [[package]] name = "icu_properties_data" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" +checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2" [[package]] name = "icu_provider" @@ -2528,7 +2878,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -2600,6 +2950,26 @@ dependencies = [ "tiff 0.9.1", ] +[[package]] +name = "implicit-clone" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88e4c5423e5b38b6f175b42561a08f6ddbc8ed3a3275f48eb350ba2dfe9a6b60" +dependencies = [ + "implicit-clone-derive", + "indexmap", +] + +[[package]] +name = "implicit-clone-derive" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "699c1b6d335e63d0ba5c1e1c7f647371ce989c3bcbe1f7ed2b85fa56e3bd1a21" +dependencies = [ + "quote", + "syn 2.0.100", +] + [[package]] name = "indent_write" version = "2.2.0" @@ -2608,9 +2978,9 @@ checksum = "0cfe9645a18782869361d9c8732246be7b410ad4e919d3609ebabdac00ba12c3" [[package]] name = "indexmap" -version = "2.7.1" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" +checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058" dependencies = [ "equivalent", "hashbrown", @@ -2659,11 +3029,11 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.15" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e19b23d53f35ce9f56aebc7d1bb4e6ac1e9c0db7ac85c8d1760c04379edced37" +checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" dependencies = [ - "hermit-abi 0.4.0", + "hermit-abi 0.5.0", "libc", "windows-sys 0.59.0", ] @@ -2694,9 +3064,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.14" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "jpeg-decoder" @@ -2732,7 +3102,7 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" dependencies = [ - "log 0.4.26", + "log 0.4.27", ] [[package]] @@ -2742,10 +3112,10 @@ dependencies = [ "chrono", "clap", "icu_locid", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.12", "toml", "xml-rs", ] @@ -2811,9 +3181,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.170" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] name = "libloading" @@ -2900,6 +3270,12 @@ version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +[[package]] +name = "linux-raw-sys" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413" + [[package]] name = "litemap" version = "0.7.5" @@ -2922,14 +3298,14 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" dependencies = [ - "log 0.4.26", + "log 0.4.27", ] [[package]] name = "log" -version = "0.4.26" +version = "0.4.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e" +checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" dependencies = [ "value-bag", ] @@ -2951,6 +3327,12 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" +[[package]] +name = "matchit" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" + [[package]] name = "md-5" version = "0.10.6" @@ -2982,7 +3364,7 @@ version = "0.1.0" dependencies = [ "chrono", "futures", - "serde 1.0.218", + "serde 1.0.219", "serde_derive", "tokio", ] @@ -3087,7 +3469,7 @@ dependencies = [ "futures-util", "http 0.2.12", "httparse", - "log 0.4.26", + "log 0.4.27", "memchr", "mime 0.3.17", "spin", @@ -3111,7 +3493,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" dependencies = [ "libc", - "log 0.4.26", + "log 0.4.27", "openssl", "openssl-probe", "openssl-sys", @@ -3276,9 +3658,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.20.3" +version = "1.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" +checksum = "c2806eaa3524762875e21c3dcd057bc4b7bfa01ce4da8d46be1cd43649e1cc6b" [[package]] name = "openssl" @@ -3303,7 +3685,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -3335,7 +3717,7 @@ dependencies = [ "cool_asserts", "grid", "nary_tree", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "sgf", "thiserror 1.0.69", @@ -3574,22 +3956,22 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.1.9" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d" +checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.9" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67" +checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -3604,6 +3986,17 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" +[[package]] +name = "pinned" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a829027bd95e54cfe13e3e258a1ae7b645960553fb82b75ff852c29688ee595b" +dependencies = [ + "futures", + "rustversion", + "thiserror 1.0.69", +] + [[package]] name = "pio" version = "0.2.1" @@ -3677,9 +4070,9 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "plugin" @@ -3725,7 +4118,7 @@ dependencies = [ "concurrent-queue", "hermit-abi 0.4.0", "pin-project-lite", - "rustix", + "rustix 0.38.44", "tracing", "windows-sys 0.59.0", ] @@ -3744,9 +4137,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ "zerocopy", ] @@ -3758,7 +4151,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c" dependencies = [ "env_logger", - "log 0.4.26", + "log 0.4.27", +] + +[[package]] +name = "prettyplease" +version = "0.2.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5316f57387668042f561aae71480de936257848f9c43ce528e311d89a07cadeb" +dependencies = [ + "proc-macro2", + "syn 2.0.100", ] [[package]] @@ -3782,9 +4185,9 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" +checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" dependencies = [ "toml_edit 0.22.24", ] @@ -3815,9 +4218,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" +checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" dependencies = [ "unicode-ident", ] @@ -3859,13 +4262,19 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" [[package]] name = "quote" -version = "1.0.38" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" dependencies = [ "proc-macro2", ] +[[package]] +name = "r-efi" +version = "5.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" + [[package]] name = "rand" version = "0.3.23" @@ -4065,9 +4474,9 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.9" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f" +checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" dependencies = [ "bitflags 2.9.0", ] @@ -4123,22 +4532,22 @@ dependencies = [ "futures-util", "h2", "http 0.2.12", - "http-body", + "http-body 0.4.6", "hyper 0.14.32", "hyper-tls", "ipnet", "js-sys", - "log 0.4.26", + "log 0.4.27", "mime 0.3.17", "native-tls", "once_cell", "percent-encoding 2.3.1", "pin-project-lite", "rustls-pemfile", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "serde_urlencoded", - "sync_wrapper", + "sync_wrapper 0.1.2", "system-configuration", "tokio", "tokio-native-tls", @@ -4246,9 +4655,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.7" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" +checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b" dependencies = [ "const-oid", "digest", @@ -4291,7 +4700,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.25", + "semver 1.0.26", ] [[package]] @@ -4303,7 +4712,20 @@ dependencies = [ "bitflags 2.9.0", "errno", "libc", - "linux-raw-sys", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustix" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96" +dependencies = [ + "bitflags 2.9.0", + "errno", + "libc", + "linux-raw-sys 0.9.3", "windows-sys 0.59.0", ] @@ -4318,9 +4740,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.19" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" +checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" [[package]] name = "rusty-fork" @@ -4336,9 +4758,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.19" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "safemem" @@ -4431,9 +4853,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.25" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03" +checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" [[package]] name = "semver-parser" @@ -4449,34 +4871,55 @@ checksum = "34b623917345a631dc9608d5194cc206b3fe6c3554cd1c75b937e55e285254af" [[package]] name = "serde" -version = "1.0.218" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" dependencies = [ "serde_derive", ] [[package]] -name = "serde_derive" -version = "1.0.218" +name = "serde-wasm-bindgen" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" +checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" +dependencies = [ + "js-sys", + "serde 1.0.219", + "wasm-bindgen", +] + +[[package]] +name = "serde_derive" +version = "1.0.219" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "serde_json" -version = "1.0.139" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6" +checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" dependencies = [ "itoa", "memchr", "ryu", - "serde 1.0.218", + "serde 1.0.219", +] + +[[package]] +name = "serde_path_to_error" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" +dependencies = [ + "itoa", + "serde 1.0.219", ] [[package]] @@ -4485,7 +4928,7 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" dependencies = [ - "serde 1.0.218", + "serde 1.0.219", ] [[package]] @@ -4497,7 +4940,7 @@ dependencies = [ "form_urlencoded", "itoa", "ryu", - "serde 1.0.218", + "serde 1.0.219", ] [[package]] @@ -4511,13 +4954,24 @@ dependencies = [ "libyml", "memchr", "ryu", - "serde 1.0.218", + "serde 1.0.219", "version_check 0.9.5", ] [[package]] name = "server" version = "0.1.0" +dependencies = [ + "axum", + "result-extended", + "serde 1.0.219", + "thiserror 2.0.12", + "tokio", + "tower-http", + "typeshare", + "uuid 1.16.0", + "visions-types", +] [[package]] name = "sgf" @@ -4527,7 +4981,7 @@ dependencies = [ "cool_asserts", "nary_tree", "nom", - "serde 1.0.218", + "serde 1.0.219", "thiserror 1.0.69", "typeshare", "uuid 0.8.2", @@ -4628,7 +5082,7 @@ version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" dependencies = [ - "serde 1.0.218", + "serde 1.0.219", ] [[package]] @@ -4697,15 +5151,15 @@ dependencies = [ "hashbrown", "hashlink", "indexmap", - "log 0.4.26", + "log 0.4.27", "memchr", "once_cell", "percent-encoding 2.3.1", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "sha2", "smallvec", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tokio-stream", "tracing", @@ -4722,7 +5176,7 @@ dependencies = [ "quote", "sqlx-core", "sqlx-macros-core", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4738,14 +5192,14 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "sha2", "sqlx-core", "sqlx-mysql", "sqlx-postgres", "sqlx-sqlite", - "syn 2.0.98", + "syn 2.0.100", "tempfile", "tokio", "url 2.5.4", @@ -4775,20 +5229,20 @@ dependencies = [ "hkdf", "hmac", "itoa", - "log 0.4.26", + "log 0.4.27", "md-5", "memchr", "once_cell", "percent-encoding 2.3.1", "rand 0.8.5", "rsa", - "serde 1.0.218", + "serde 1.0.219", "sha1", "sha2", "smallvec", "sqlx-core", "stringprep", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "whoami", ] @@ -4814,18 +5268,18 @@ dependencies = [ "hmac", "home", "itoa", - "log 0.4.26", + "log 0.4.27", "md-5", "memchr", "once_cell", "rand 0.8.5", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "sha2", "smallvec", "sqlx-core", "stringprep", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "whoami", ] @@ -4844,9 +5298,9 @@ dependencies = [ "futures-intrusive", "futures-util", "libsqlite3-sys", - "log 0.4.26", + "log 0.4.27", "percent-encoding 2.3.1", - "serde 1.0.218", + "serde 1.0.219", "serde_urlencoded", "sqlx-core", "tracing", @@ -4888,7 +5342,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2c04b93fc15d79b39c63218f15e3fdffaa4c227830686e3b7c5f41244eb3e50" dependencies = [ - "base64 0.9.3", + "base64 0.13.1", "proc-macro2", "quote", "syn 1.0.109", @@ -4908,9 +5362,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.98" +version = "2.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1" +checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0" dependencies = [ "proc-macro2", "quote", @@ -4923,6 +5377,12 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" + [[package]] name = "synstructure" version = "0.13.1" @@ -4931,7 +5391,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4999,15 +5459,14 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.17.1" +version = "3.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230" +checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf" dependencies = [ - "cfg-if", "fastrand", - "getrandom 0.3.1", + "getrandom 0.3.2", "once_cell", - "rustix", + "rustix 1.0.3", "windows-sys 0.59.0", ] @@ -5031,11 +5490,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.11" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" +checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" dependencies = [ - "thiserror-impl 2.0.11", + "thiserror-impl 2.0.12", ] [[package]] @@ -5046,18 +5505,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "thiserror-impl" -version = "2.0.11" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" +checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5095,30 +5554,30 @@ dependencies = [ [[package]] name = "time" -version = "0.3.37" +version = "0.3.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" +checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" dependencies = [ "deranged", "itoa", "num-conv", "powerfmt", - "serde 1.0.218", + "serde 1.0.219", "time-core", "time-macros", ] [[package]] name = "time-core" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" +checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" [[package]] name = "time-macros" -version = "0.2.19" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" +checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" dependencies = [ "num-conv", "time-core", @@ -5139,15 +5598,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" dependencies = [ "displaydoc", - "serde 1.0.218", + "serde 1.0.219", "zerovec", ] [[package]] name = "tinyvec" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" +checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" dependencies = [ "tinyvec_macros", ] @@ -5160,9 +5619,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.43.0" +version = "1.44.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" dependencies = [ "backtrace", "bytes", @@ -5184,7 +5643,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5215,16 +5674,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" dependencies = [ "futures-util", - "log 0.4.26", + "log 0.4.27", "tokio", "tungstenite", ] [[package]] name = "tokio-util" -version = "0.7.13" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" +checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034" dependencies = [ "bytes", "futures-core", @@ -5233,13 +5692,30 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokise" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "decf97738ce15b9e9cc1671ea29b0f6c56538719e1a092d19cc2134bf144e40e" +dependencies = [ + "futures", + "gloo", + "num_cpus", + "once_cell", + "pin-project", + "pinned", + "tokio", + "tokio-stream", + "wasm-bindgen-futures", +] + [[package]] name = "toml" version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148" dependencies = [ - "serde 1.0.218", + "serde 1.0.219", "serde_spanned", "toml_datetime", "toml_edit 0.22.24", @@ -5251,7 +5727,7 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" dependencies = [ - "serde 1.0.218", + "serde 1.0.219", ] [[package]] @@ -5283,12 +5759,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474" dependencies = [ "indexmap", - "serde 1.0.218", + "serde 1.0.219", "serde_spanned", "toml_datetime", - "winnow 0.7.3", + "winnow 0.7.4", ] +[[package]] +name = "tower" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper 1.0.2", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-http" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" +dependencies = [ + "bitflags 2.9.0", + "bytes", + "http 1.3.1", + "pin-project-lite", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + [[package]] name = "tower-service" version = "0.3.3" @@ -5301,7 +5813,7 @@ version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ - "log 0.4.26", + "log 0.4.27", "pin-project-lite", "tracing-attributes", "tracing-core", @@ -5315,7 +5827,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5352,9 +5864,9 @@ dependencies = [ "byteorder", "bytes", "data-encoding", - "http 1.2.0", + "http 1.3.1", "httparse", - "log 0.4.26", + "log 0.4.27", "rand 0.8.5", "sha1", "thiserror 1.0.69", @@ -5399,7 +5911,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19be0f411120091e76e13e5a0186d8e2bcc3e7e244afdb70152197f1a8486ceb" dependencies = [ "chrono", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "typeshare-annotation", ] @@ -5411,7 +5923,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a615d6c2764852a2e88a4f16e9ce1ea49bb776b5872956309e170d63a042a34f" dependencies = [ "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5461,9 +5973,9 @@ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] name = "unicode-ident" -version = "1.0.17" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" [[package]] name = "unicode-normalization" @@ -5574,23 +6086,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" dependencies = [ "getrandom 0.2.15", - "serde 1.0.218", + "serde 1.0.219", ] [[package]] name = "uuid" -version = "1.15.1" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" +checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" dependencies = [ - "getrandom 0.3.1", + "getrandom 0.3.2", + "js-sys", + "wasm-bindgen", ] [[package]] name = "value-bag" -version = "1.10.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2" +checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5" [[package]] name = "vcell" @@ -5622,6 +6136,30 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" +[[package]] +name = "visions-client" +version = "0.1.0" +dependencies = [ + "gloo-console", + "gloo-net 0.6.0", + "serde 1.0.219", + "serde-wasm-bindgen", + "serde_json", + "visions-types", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "yew", +] + +[[package]] +name = "visions-types" +version = "0.1.0" +dependencies = [ + "serde 1.0.219", + "uuid 1.16.0", +] + [[package]] name = "void" version = "1.0.2" @@ -5667,14 +6205,14 @@ dependencies = [ "headers", "http 0.2.12", "hyper 0.14.32", - "log 0.4.26", + "log 0.4.27", "mime 0.3.17", "mime_guess 2.0.5", "multer", "percent-encoding 2.3.1", "pin-project", "scoped-tls", - "serde 1.0.218", + "serde 1.0.219", "serde_json", "serde_urlencoded", "tokio", @@ -5698,9 +6236,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasi" -version = "0.13.3+wasi-0.2.2" +version = "0.14.2+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2" +checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" dependencies = [ "wit-bindgen-rt", ] @@ -5730,10 +6268,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" dependencies = [ "bumpalo", - "log 0.4.26", + "log 0.4.27", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "wasm-bindgen-shared", ] @@ -5768,7 +6306,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -5800,9 +6338,9 @@ checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" [[package]] name = "whoami" -version = "1.5.2" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" +checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7" dependencies = [ "redox_syscall", "wasite", @@ -5850,9 +6388,9 @@ dependencies = [ [[package]] name = "windows-link" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3" +checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" [[package]] name = "windows-sys" @@ -6013,9 +6551,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7f4ea97f6f78012141bcdb6a216b2609f0979ada50b20ca5b52dde2eac2bb1" +checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36" dependencies = [ "memchr", ] @@ -6032,9 +6570,9 @@ dependencies = [ [[package]] name = "wit-bindgen-rt" -version = "0.33.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" +checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" dependencies = [ "bitflags 2.9.0", ] @@ -6066,13 +6604,51 @@ dependencies = [ "winapi", ] +[[package]] +name = "yew" +version = "0.21.0" +source = "git+https://github.com/yewstack/yew/#b0d065626175f009cde687980f3724de8dc27240" +dependencies = [ + "console_error_panic_hook", + "futures", + "gloo", + "implicit-clone", + "indexmap", + "js-sys", + "rustversion", + "serde 1.0.219", + "slab", + "thiserror 2.0.12", + "tokio", + "tokise", + "tracing", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "yew-macro", +] + +[[package]] +name = "yew-macro" +version = "0.21.0" +source = "git+https://github.com/yewstack/yew/#b0d065626175f009cde687980f3724de8dc27240" +dependencies = [ + "once_cell", + "prettyplease", + "proc-macro-error", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.100", +] + [[package]] name = "yoke" version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" dependencies = [ - "serde 1.0.218", + "serde 1.0.219", "stable_deref_trait", "yoke-derive", "zerofrom", @@ -6086,29 +6662,28 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "synstructure", ] [[package]] name = "zerocopy" -version = "0.7.35" +version = "0.8.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879" dependencies = [ - "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.8.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -6128,7 +6703,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "synstructure", ] @@ -6157,7 +6732,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index cb38613..ec41881 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,6 @@ resolver = "2" members = [ "authdb", - # "bike-lights/bike", "bike-lights/core", "bike-lights/simulator", "changeset", @@ -35,4 +34,7 @@ members = [ "timezone-testing", "tree", "visions/server", + "visions/types", + "visions/ui", + # "bike-lights/bike", ] diff --git a/flake.nix b/flake.nix index 970fa21..9b846f2 100644 --- a/flake.nix +++ b/flake.nix @@ -26,6 +26,7 @@ pkgs.cargo-watch pkgs.clang pkgs.crate2nix + pkgs.trunk pkgs.glib pkgs.gst_all_1.gst-plugins-bad pkgs.gst_all_1.gst-plugins-base diff --git a/visions/server/Cargo.toml b/visions/server/Cargo.toml index a35055c..d32769b 100644 --- a/visions/server/Cargo.toml +++ b/visions/server/Cargo.toml @@ -4,3 +4,12 @@ version = "0.1.0" edition = "2021" [dependencies] +axum = { version = "0.8.1", features = ["macros"] } +visions-types = { path = "../types" } +serde = { version = "1.0.217", features = ["derive", "serde_derive"] } +tokio = { version = "1.43.0", features = ["full", "rt"] } +tower-http = { version = "0.6.2", features = ["cors"] } +typeshare = "1.0.4" +uuid = { version = "1.13.1", features = ["v4"] } +result-extended = { path = "../../result-extended" } +thiserror = "2.0.11" diff --git a/visions/server/src/main.rs b/visions/server/src/main.rs index e7a11a9..1680dc4 100644 --- a/visions/server/src/main.rs +++ b/visions/server/src/main.rs @@ -1,3 +1,157 @@ -fn main() { - println!("Hello, world!"); +use std::future::Future; + +use axum::{ + http::{ + header::{AUTHORIZATION, CONTENT_TYPE}, + HeaderMap, Method, StatusCode, + }, + routing::{get, post}, + Json, Router, +}; +use visions_types::{AccountStatus, AuthRequest, AuthResponse, SessionId, UserOverview}; +use result_extended::{error, ok, ResultExt}; +use thiserror::Error; +use tower_http::cors::{Any, CorsLayer}; + +#[axum::debug_handler] +async fn check_password( + request: Json<AuthRequest>, +) -> (StatusCode, Json<Option<AuthResponse>>) { + let Json(request) = request; + if request.username == "vakarian" && request.password == "aoeu" { + ( + StatusCode::OK, + Json(Some(AuthResponse::Success("vakarian-session-id".into()))), + ) + } else if request.username == "shephard" && request.password == "aoeu" { + ( + StatusCode::OK, + Json(Some(AuthResponse::PasswordReset( + "shephard-session-id".into(), + ))), + ) + } else { + (StatusCode::UNAUTHORIZED, Json(None)) + } +} + +#[derive(Debug, Error)] +enum AppError { + #[error("no user authorized")] + Unauthorized, + #[error("bad request")] + BadRequest, +} + +#[derive(Debug, Error)] +enum FatalError { + #[error("on unknown fatal error occurred")] + Unknown, +} + +impl result_extended::FatalError for FatalError {} + +fn parse_session_header(headers: HeaderMap) -> ResultExt<Option<SessionId>, AppError, FatalError> { + match headers.get("Authorization") { + Some(token) => { + println!("session token: {:?}", token); + match token + .to_str() + .unwrap() + .split(" ") + .collect::<Vec<&str>>() + .as_slice() + { + [_schema, token] => ok(Some(SessionId::from(*token))), + _ => error(AppError::BadRequest), + } + } + None => ok(None), + } +} + +async fn auth_required<B, F, Fut>(headers: HeaderMap, f: F) -> (StatusCode, Json<Option<B>>) +where + F: Fn() -> Fut, + Fut: Future<Output = (StatusCode, B)>, +{ + match parse_session_header(headers) { + ResultExt::Ok(Some(session_id)) => { + if session_id == "vakarian-session-id".into() { + let (code, result) = f().await; + (code, Json(Some(result))) + } else { + (StatusCode::UNAUTHORIZED, Json(None)) + } + } + ResultExt::Ok(None) => (StatusCode::UNAUTHORIZED, Json(None)), + ResultExt::Err(AppError::Unauthorized) => (StatusCode::UNAUTHORIZED, Json(None)), + ResultExt::Err(AppError::BadRequest) => (StatusCode::BAD_REQUEST, Json(None)), + ResultExt::Fatal(err) => { + panic!("{}", err); + } + } +} + +#[tokio::main] +async fn main() { + let app = Router::new() + .route( + "/api/test/health", + get(|| async { (StatusCode::OK, Json(None::<String>)) }).layer( + CorsLayer::new() + .allow_methods([Method::GET]) + .allow_origin(Any), + ), + ) + .route( + "/api/test/auth", + post(|req: Json<AuthRequest>| check_password(req)).layer( + CorsLayer::new() + .allow_methods([Method::POST]) + .allow_headers([CONTENT_TYPE]) + .allow_origin(Any), + ), + ) + .route( + "/api/test/list-users", + get(|headers: HeaderMap| { + auth_required(headers, || async { + println!("list_users is about to return a bunch of stuff"); + ( + StatusCode::OK, + Some(vec![ + UserOverview { + id: "vakarian-id".into(), + name: "vakarian".to_owned(), + status: AccountStatus::Ok, + }, + UserOverview { + id: "shephard-id".into(), + name: "shephard".to_owned(), + status: AccountStatus::PasswordReset( + "2050-01-01 00:00:00".to_owned(), + ), + }, + UserOverview { + id: "tali-id".into(), + name: "tali".to_owned(), + status: AccountStatus::Locked, + }, + ]), + ) + }) + }) + .layer( + CorsLayer::new() + .allow_headers([AUTHORIZATION]) + .allow_methods([Method::GET]) + .allow_origin(Any), + ), + ); + let listener = tokio::net::TcpListener::bind("127.0.0.1:8001") + .await + .unwrap(); + + axum::serve(listener, app).await.unwrap(); } diff --git a/visions/types/.gitignore b/visions/types/.gitignore new file mode 100644 index 0000000..1d493a9 --- /dev/null +++ b/visions/types/.gitignore @@ -0,0 +1,2 @@ +gen/ +dist/ diff --git a/visions/types/Cargo.toml b/visions/types/Cargo.toml new file mode 100644 index 0000000..44a524a --- /dev/null +++ b/visions/types/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "visions-types" +version = "0.1.0" +edition = "2021" + +[dependencies] +serde = { version = "1.0.218", features = ["derive"] } +uuid = { version = "1.13.2", features = ["v4", "js"] } diff --git a/visions/types/Taskfile.yml b/visions/types/Taskfile.yml deleted file mode 100644 index d082755..0000000 --- a/visions/types/Taskfile.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: '3' - -tasks: - build: - cmds: - - npm install typescript - - typeshare --lang typescript --output-file visions.ts ../server/src - - npx tsc diff --git a/visions/types/package.json b/visions/types/package.json deleted file mode 100644 index 6d972c1..0000000 --- a/visions/types/package.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "visions-types", - "version": "0.0.1", - "description": "Shared data types for Visions", - "main": "visions.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "author": "", - "license": "ISC", - "dependencies": { - "typescript": "^5.7.3" - } -} diff --git a/visions/types/src/lib.rs b/visions/types/src/lib.rs new file mode 100644 index 0000000..0ffc959 --- /dev/null +++ b/visions/types/src/lib.rs @@ -0,0 +1,81 @@ +use serde::{Deserialize, Serialize}; +use uuid::Uuid; + +#[derive(Clone, Deserialize, PartialEq, Serialize)] +#[serde(tag = "type", content = "content", rename_all = "kebab-case")] +pub enum AccountStatus { + Ok, + PasswordReset(String), + Locked, +} + +#[derive(Deserialize, Serialize)] +pub struct AuthRequest { + pub username: String, + pub password: String, +} + +#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)] +pub struct SessionId(String); + +impl SessionId { + pub fn new() -> Self { + Self(format!("{}", Uuid::new_v4().hyphenated())) + } + + pub fn as_str(&self) -> &str { + &self.0 + } +} + +impl From<&str> for SessionId { + fn from(s: &str) -> Self { + Self(s.to_owned()) + } +} + +impl From<String> for SessionId { + fn from(s: String) -> Self { + Self(s) + } +} + +#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)] +pub struct UserId(String); + +impl UserId { + pub fn new() -> Self { + Self(format!("{}", Uuid::new_v4().hyphenated())) + } + + pub fn as_str(&self) -> &str { + &self.0 + } +} + +impl From<&str> for UserId { + fn from(s: &str) -> Self { + Self(s.to_owned()) + } +} + +impl From<String> for UserId { + fn from(s: String) -> Self { + Self(s) + } +} + +#[derive(Clone, Deserialize, PartialEq, Serialize)] +pub struct UserOverview { + pub id: UserId, + pub name: String, + pub status: AccountStatus, +} + +#[derive(Deserialize, Serialize)] +#[serde(tag = "type", content = "content", rename_all = "kebab-case")] +pub enum AuthResponse { + Success(SessionId), + PasswordReset(SessionId), +} + diff --git a/visions/types/tsconfig.json b/visions/types/tsconfig.json deleted file mode 100644 index 2fbee24..0000000 --- a/visions/types/tsconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "compilerOptions": { - "target": "es2016", - "module": "commonjs", - "declaration": true, - "declarationMap": true, - "sourceMap": true, - "outDir": "./dist", - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "skipLibCheck": true - }, - "include": ["./visions.ts"] -} diff --git a/visions/ui/.gitignore b/visions/ui/.gitignore deleted file mode 100644 index 4d29575..0000000 --- a/visions/ui/.gitignore +++ /dev/null @@ -1,23 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* diff --git a/visions/ui/Cargo.toml b/visions/ui/Cargo.toml new file mode 100644 index 0000000..7c149b8 --- /dev/null +++ b/visions/ui/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "visions-client" +version = "0.1.0" +edition = "2021" + +[dependencies] +visions-types = { path = "../types" } +gloo-console = "0.3.0" +gloo-net = "0.6.0" +serde = { version = "1.0.217", features = ["derive"] } +serde-wasm-bindgen = "0.6.5" +serde_json = "1.0.138" +wasm-bindgen = "0.2.100" +wasm-bindgen-futures = "0.4.50" +web-sys = "0.3.77" +yew = { git = "https://github.com/yewstack/yew/", features = ["csr"] } + diff --git a/visions/ui/Taskfile.yml b/visions/ui/Taskfile.yml index 826f96e..90212f2 100644 --- a/visions/ui/Taskfile.yml +++ b/visions/ui/Taskfile.yml @@ -3,12 +3,5 @@ version: '3' tasks: dev: cmds: - - cd ../visions-types && task build - - npm install - - npm run start + - trunk serve --open - test: - cmds: - - cd ../visions-types && task build - - npm install - - npm run test diff --git a/visions/ui/Trunk.toml b/visions/ui/Trunk.toml new file mode 100644 index 0000000..4262060 --- /dev/null +++ b/visions/ui/Trunk.toml @@ -0,0 +1,3 @@ +[[proxy]] +backend = "http://localhost:8001/api" +insecure = true diff --git a/visions/ui/design.css b/visions/ui/design.css new file mode 100644 index 0000000..bf15d82 --- /dev/null +++ b/visions/ui/design.css @@ -0,0 +1,36 @@ +:root { + --spacing-s: 4px; + --spacing-m: 8px; + --shadow-shallow: 2px 2px 1px; +} + +body { + background-color: hsl(0, 0%, 95%); + font-family: Ariel, sans-serif; +} + +.card { + display: flex; + flex-direction: column; + align-items: space-between; + border: 1px solid black; + box-shadow: var(--shadow-shallow); + border-radius: var(--spacing-s); + padding: var(--spacing-m); +} + +.card > h1 { + margin: 0px; +} + +.card > * { + margin-top: var(--spacing-s); + margin-bottom: var(--spacing-s); +} + +.login-form { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} diff --git a/visions/ui/index.html b/visions/ui/index.html new file mode 100644 index 0000000..f5cb26c --- /dev/null +++ b/visions/ui/index.html @@ -0,0 +1,9 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8" /> + <title>Visions Client Demo</title> + <link data-trunk rel="css" href="design.css" /> + </head> + <body></body> +</html> diff --git a/visions/ui/package.json b/visions/ui/package.json deleted file mode 100644 index dcfa591..0000000 --- a/visions/ui/package.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "name": "ui", - "version": "0.1.0", - "private": true, - "dependencies": { - "@babel/plugin-proposal-private-property-in-object": "^7.21.11", - "@testing-library/jest-dom": "^6.6.3", - "@testing-library/react": "^16.2.0", - "@testing-library/user-event": "^14.6.1", - "@types/jest": "^27.5.2", - "@types/node": "^16.18.119", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", - "@types/react-router": "^5.1.20", - "@types/react-router-dom": "^5.3.3", - "classnames": "^2.5.1", - "react": "^18.3.1", - "react-dom": "^18.3.1", - "react-router": "^6.28.0", - "react-router-dom": "^6.28.0", - "react-scripts": "5.0.1", - "react-use-websocket": "^4.11.1", - "typescript": "^4.9.5", - "visions-types": "../visions-types", - "web-vitals": "^2.1.4" - }, - "scripts": { - "start": "react-scripts start", - "build": "react-scripts build", - "test": "react-scripts test", - "eject": "react-scripts eject" - }, - "eslintConfig": { - "extends": [ - "react-app", - "react-app/jest" - ] - }, - "browserslist": { - "production": [ - ">0.2%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - } -} diff --git a/visions/ui/src/client.rs b/visions/ui/src/client.rs new file mode 100644 index 0000000..9b1936d --- /dev/null +++ b/visions/ui/src/client.rs @@ -0,0 +1,55 @@ +use std::future::Future; + +use gloo_console::log; +use gloo_net::http::{Request, Response}; +use visions_types::{AuthRequest, AuthResponse, SessionId, UserOverview}; + +pub enum ClientError { + Unauthorized, + Err(u16), +} + +pub trait Client { + fn auth(&self, username: String, password: String) -> impl Future<Output = Result<AuthResponse, ClientError>>; + fn list_users(&self, session_id: &SessionId) -> impl Future<Output = Result<Vec<UserOverview>, ClientError>>; +} + +pub struct Connection; + +impl Connection { + pub fn new() -> Self { Self } +} + +impl Client for Connection { + async fn auth(&self, username: String, password: String) -> Result<AuthResponse, ClientError> { + log!("authenticating: ", &username, &password); + let response: Response = Request::post("/api/test/auth") + .header("Content-Type", "application/json") + .body(serde_wasm_bindgen::to_value(&serde_json::to_string(&AuthRequest{ username, password }).unwrap()).unwrap()) + .unwrap() + .send() + .await + .unwrap(); + + if response.ok() { + Ok(serde_json::from_slice(&response.binary().await.unwrap()).unwrap()) + } else { + Err(ClientError::Err(response.status())) + } + } + + async fn list_users(&self, session_id: &SessionId) -> Result<Vec<UserOverview>, ClientError> { + let response: Response = Request::get("/api/test/list-users") + .header("Content-Type", "application/json") + .header("Authorization", &format!("Bearer {}", session_id.as_str())) + .send() + .await + .unwrap(); + + if response.ok() { + Ok(serde_json::from_slice(&response.binary().await.unwrap()).unwrap()) + } else { + Err(ClientError::Err(response.status())) + } + } +} diff --git a/visions/ui/src/components/mod.rs b/visions/ui/src/components/mod.rs new file mode 100644 index 0000000..e69de29 diff --git a/visions/ui/src/main.rs b/visions/ui/src/main.rs new file mode 100644 index 0000000..5044058 --- /dev/null +++ b/visions/ui/src/main.rs @@ -0,0 +1,125 @@ +use std::rc::Rc; + +use gloo_console::log; +use visions_types::{AuthResponse, SessionId, UserOverview}; +use yew::prelude::*; + +mod client; +use client::*; + +mod views; +use views::Login; + +struct AuthInfo { + session_id: Option<SessionId>, +} + +impl Default for AuthInfo { + fn default() -> Self { + Self { session_id: None } + } +} + +enum AuthAction { + Auth(String), + Unauth, +} + +impl Reducible for AuthInfo { + type Action = AuthAction; + + fn reduce(self: Rc<Self>, action: Self::Action) -> Rc<Self> { + // log!("reduce", action); + match action { + AuthAction::Auth(session_id) => Self { + session_id: Some(session_id.into()), + } + .into(), + AuthAction::Unauth => Self { session_id: None }.into(), + } + } +} + +#[derive(Properties, PartialEq)] +struct LandingProps { + session_id: SessionId, +} + +#[function_component] +fn Landing(LandingProps { session_id }: &LandingProps) -> Html { + let user_ref = use_state(|| vec![]); + + { + let user_ref = user_ref.clone(); + let session_id = session_id.clone(); + use_effect(move || { + wasm_bindgen_futures::spawn_local(async move { + let client = Connection::new(); + match client.list_users(&session_id).await { + Ok(users) => user_ref.set(users), + Err(ClientError::Unauthorized) => todo!(), + Err(ClientError::Err(status)) => { + log!("error: {:?}", status); + todo!() + } + } + }) + }); + } + + html! { + <div> + {"Landing Page"} + {user_ref.iter().map(|overview| { + let overview = overview.clone(); + html! { <UserOverviewComponent overview={overview} /> }}).collect::<Vec<Html>>() + } + </div> + } +} + +#[derive(Properties, PartialEq)] +struct UserOverviewProps { + overview: UserOverview, +} + +#[function_component] +fn UserOverviewComponent(UserOverviewProps { overview }: &UserOverviewProps) -> Html { + html! { + <div> { overview.name.clone() } </div> + } +} + +#[function_component] +fn App() -> Html { + let auth_info = use_reducer(AuthInfo::default); + + let on_login = { + let auth_info = auth_info.clone(); + Callback::from(move |(username, password)| { + let auth_info = auth_info.clone(); + wasm_bindgen_futures::spawn_local(async move { + let client = Connection::new(); + match client.auth(username, password).await { + Ok(AuthResponse::Success(session_id)) => { + auth_info.dispatch(AuthAction::Auth(session_id.as_str().to_owned())) + } + Ok(AuthResponse::PasswordReset(session_id)) => { + auth_info.dispatch(AuthAction::Auth(session_id.as_str().to_owned())) + } + Err(ClientError::Unauthorized) => todo!(), + Err(ClientError::Err(status)) => todo!(), + }; + }) + }) + }; + + match auth_info.session_id { + Some(ref session_id) => html! { <Landing session_id={session_id.clone()} /> }, + None => html! { <Login on_login={on_login.clone()} /> }, + } +} + +fn main() { + yew::Renderer::<App>::new().render(); +} diff --git a/visions/ui/src/views/login.rs b/visions/ui/src/views/login.rs new file mode 100644 index 0000000..93f0e1e --- /dev/null +++ b/visions/ui/src/views/login.rs @@ -0,0 +1,58 @@ +use wasm_bindgen::JsCast; +use web_sys::HtmlInputElement; +use yew::{function_component, html, use_state, Callback, Event, Html, Properties}; + +#[derive(Properties, PartialEq)] +pub struct LoginProps { + pub on_login: Callback<(String, String)>, +} + +#[function_component] +pub fn Login(LoginProps { on_login }: &LoginProps) -> Html { + let username = use_state(|| "".to_owned()); + let password = use_state(|| "".to_owned()); + + let on_click = { + let on_login = on_login.clone(); + let username = username.clone(); + let password = password.clone(); + Callback::from(move |_| on_login.emit((username.to_string(), password.to_string()))) + }; + + let on_username_changed = { + let username = username.clone(); + Callback::from(move |event: Event| { + let input = event + .target() + .and_then(|t| t.dyn_into::<HtmlInputElement>().ok()); + if let Some(input) = input { + username.set(input.value()); + } + }) + }; + + let on_password_changed = { + let password = password.clone(); + Callback::from(move |event: Event| { + let input = event + .target() + .and_then(|t| t.dyn_into::<HtmlInputElement>().ok()); + if let Some(input) = input { + password.set(input.value()); + } + }) + }; + + html! { + <div class="login-form"> + <div class="card"> + <h1>{"Welcome to Visions VTT"}</h1> + <input type="text" name="username" placeholder="username" onchange={on_username_changed} /> + <input type="password" name="password" placeholder="password" onchange={on_password_changed} /> + <button onclick={on_click}>{"Login"}</button> + </div> + </div> + } +} + + diff --git a/visions/ui/src/views/mod.rs b/visions/ui/src/views/mod.rs new file mode 100644 index 0000000..bba0880 --- /dev/null +++ b/visions/ui/src/views/mod.rs @@ -0,0 +1,2 @@ +mod login; +pub use login::Login; diff --git a/visions/ui/tsconfig.json b/visions/ui/tsconfig.json deleted file mode 100644 index 2ccd292..0000000 --- a/visions/ui/tsconfig.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], - "allowJs": true, - "skipLibCheck": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "noFallthroughCasesInSwitch": true, - "module": "esnext", - "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "react-jsx" - }, - "include": [ - "src", - "gen" - ] -} diff --git a/visions/yew-app/Cargo.toml b/visions/yew-app/Cargo.toml new file mode 100644 index 0000000..1de159f --- /dev/null +++ b/visions/yew-app/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "yew-app" +version = "0.1.0" +edition = "2021" + +[dependencies] +gloo-net = "0.6.0" +serde = { version = "1.0.217", features = ["derive"] } +wasm-bindgen-futures = "0.4.50" +yew = { git = "https://github.com/yewstack/yew/", features = ["csr"] } + diff --git a/visions/yew-app/design.css b/visions/yew-app/design.css new file mode 100644 index 0000000..7e53fb2 --- /dev/null +++ b/visions/yew-app/design.css @@ -0,0 +1,3 @@ +body { + background-color: hsl(0, 0%, 50%); +} diff --git a/visions/yew-app/index.html b/visions/yew-app/index.html new file mode 100644 index 0000000..80c3f8b --- /dev/null +++ b/visions/yew-app/index.html @@ -0,0 +1,5 @@ +<!doctype html> +<html lang="en"> + <head></head> + <body></body> +</html> diff --git a/visions/yew-app/src/main.rs b/visions/yew-app/src/main.rs new file mode 100644 index 0000000..5adf0b2 --- /dev/null +++ b/visions/yew-app/src/main.rs @@ -0,0 +1,126 @@ +use yew::prelude::*; +use serde::Deserialize; +use gloo_net::http::Request; + +#[derive(Clone, PartialEq, Deserialize)] +struct Video { + id: usize, + title: String, + speaker: String, + url: String, +} + +#[derive(Properties, PartialEq)] +struct VideosListProps { + videos: Vec<Video>, + on_click: Callback<Video>, +} + +/* +fn videos() -> Vec<Video> { + vec![ + Video { + id: 1, + title: "Building and breaking things".to_string(), + speaker: "John Doe".to_string(), + url: "https://youtu.be/PsaFVLr8t4E".to_string(), + }, + Video { + id: 2, + title: "The development process".to_string(), + speaker: "Jane Smith".to_string(), + url: "https://youtu.be/PsaFVLr8t4E".to_string(), + }, + Video { + id: 3, + title: "The Web 7.0".to_string(), + speaker: "Matt Miller".to_string(), + url: "https://youtu.be/PsaFVLr8t4E".to_string(), + }, + Video { + id: 4, + title: "Mouseless development".to_string(), + speaker: "Tom Jerry".to_string(), + url: "https://youtu.be/PsaFVLr8t4E".to_string(), + }, + ] +} +*/ + +#[function_component(VideosList)] +fn videos_list(VideosListProps { videos, on_click }: &VideosListProps) -> Html { + let on_click = on_click.clone(); + videos + .iter() + .map(|video| { + let on_video_select = { + let on_click = on_click.clone(); + let video = video.clone(); + Callback::from(move |_| on_click.emit(video.clone())) + }; + html! { + <p key={video.id} onclick={on_video_select}>{format!("{}: {}", video.speaker, video.title)}</p> + } + }) + .collect() +} + +#[derive(Properties, PartialEq)] +struct VideosDetailsProps { + video: Video, +} + +#[function_component(VideoDetails)] +fn video_details(VideosDetailsProps { video }: &VideosDetailsProps) -> Html { + html! { + <div> + <h3>{video.title.clone()}</h3> + <img src="https://via.placeholder.com/640x360.png?text=Video+Player+Placeholder" alt="video thumbnail" /> + </div> + } +} + +#[function_component(App)] +fn app() -> Html { + let videos = use_state(|| vec![]); + { + let videos = videos.clone(); + use_effect_with((), move |_| { + let videos = videos.clone(); + wasm_bindgen_futures::spawn_local(async move { + let response = Request::get("/tutorial/data.json").send().await; + println!("response: {:?}", response); + let response = response.unwrap(); + let fetched_videos: Vec<Video> = response.json().await.unwrap(); + videos.set(fetched_videos); + }); + || () + }); + } + + let selected_video = use_state(|| None); + + let on_video_select = { + let selected_video = selected_video.clone(); + Callback::from(move |video: Video| selected_video.set(Some(video))) + }; + + let details = selected_video.as_ref().map(|video| html! { + <VideoDetails video={video.clone()} /> + }); + + html! { + <> + <h1>{ "RustConf Explorer" }</h1> + <div> + <h3>{"Videos to watch"}</h3> + <VideosList videos={(*videos).clone()} on_click={on_video_select.clone()} /> + </div> + { for details } + </> + } +} + +fn main() { + yew::Renderer::<App>::new().render(); +}