diff --git a/core/actor/Cargo.toml b/core/actor/Cargo.toml index f09aa03..c5f5290 100644 --- a/core/actor/Cargo.toml +++ b/core/actor/Cargo.toml @@ -8,7 +8,9 @@ name = "baobab_actor" # Can be different from package name, or same path = "src/lib.rs" crate-type = ["cdylib", "rlib"] - +[[bin]] +name = "baobab-actor-tui" +path = "cmd/terminal_ui_main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -21,11 +23,15 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] } log = "0.4" env_logger = "0.10" clap = { version = "4.4", features = ["derive"] } -uuid = { version = "1.6", features = ["v4", "serde"] } # Though task_id is string, uuid might be useful +uuid = { version = "1.6", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } toml = "0.8" thiserror = "1.0" async-trait = "0.1" +# TUI dependencies +anyhow = "1.0" +crossterm = "0.28" +ratatui = "0.28" hero_supervisor = { path = "../supervisor" } hero_job = { path = "../job" } heromodels = { git = "https://git.ourworld.tf/herocode/db.git" } diff --git a/core/actor/README.md b/core/actor/README.md index c4deecd..dd93550 100644 --- a/core/actor/README.md +++ b/core/actor/README.md @@ -73,3 +73,12 @@ Key dependencies include: - `clap`: For command-line argument parsing. - `tokio`: For the asynchronous runtime. - `log`, `env_logger`: For logging. + + +## TUI Example + +```bash +cargo run --example baobab-actor-tui -- --id osis --path /Users/timurgordon/code/git.ourworld.tf/herocode/actor_osis/target/debug/actor_osis --example-dir /Users/timurgordon/code/git.ourworld.tf/herocode/actor_osis/examples/scripts +``` + +The TUI will allow you to monitor the actor's job queue and dispatch new jobs to it. diff --git a/core/actor/README_UI.md b/core/actor/README_UI.md deleted file mode 100644 index c746adf..0000000 --- a/core/actor/README_UI.md +++ /dev/null @@ -1,168 +0,0 @@ -# Baobab Actor UI - -A WASM-based user interface for monitoring and dispatching jobs to Baobab actors. This UI provides a web-based dashboard for interacting with actors, running scripts, monitoring jobs, and managing example scripts. - -## Features - -- **Dashboard**: Overview of actor status, job statistics, and configuration -- **Inspector**: Interactive script editor for dispatching jobs directly to Redis -- **Jobs**: Real-time job monitoring and status tracking -- **Examples**: Run pre-defined example scripts from a specified directory - -## Prerequisites - -- Rust with `wasm32-unknown-unknown` target installed -- `wasm-pack` for building WASM applications -- Python 3 (for the built-in HTTP server) - -## Installation - -1. Install the required Rust target: -```bash -rustup target add wasm32-unknown-unknown -``` - -2. Install wasm-pack: -```bash -cargo install wasm-pack -``` - -## Usage - -### Basic Usage - -Run the actor UI with minimal configuration: - -```bash -cargo run --bin baobab_actor_ui -- --id my_actor --path /path/to/actor/binary -``` - -### Full Configuration - -```bash -cargo run --bin baobab_actor_ui -- \ - --id osis \ - --path /path/to/actor/osis \ - --example-dir /path/to/examples \ - --redis-url redis://localhost:6379 \ - --port 8080 -``` - -### Command Line Options - -- `--id`: Actor ID to connect to (required) -- `--path`: Path to the actor binary (required) -- `--example-dir`: Directory containing example .rhai scripts (optional) -- `--redis-url`: Redis connection URL (default: redis://localhost:6379) -- `--port`: Port to serve the UI on (default: 8080) -- `--skip-build`: Skip building WASM and serve existing build - -### Development - -For development with hot reload, you can use Trunk: - -```bash -# Install trunk -cargo install trunk - -# Serve with hot reload -trunk serve --features wasm -``` - -## UI Components - -### Dashboard -- Actor status overview -- Job statistics (completed, pending, failed) -- Configuration information -- System metrics - -### Inspector -- Interactive script editor with syntax highlighting -- Job parameter configuration (JSON format) -- Real-time execution output -- Direct Redis job dispatch - -### Jobs -- Real-time job queue monitoring -- Job status tracking (Pending, Running, Completed, Failed) -- Job details viewer -- Job history and logs - -### Examples -- Browse available example scripts -- One-click script execution -- Script content preview -- Execution results display - -## Architecture - -The UI is built using: -- **Yew**: Rust-based WebAssembly framework for building web applications -- **Bootstrap 5**: CSS framework for responsive design -- **Bootstrap Icons**: Icon library for UI elements -- **WASM-bindgen**: Rust/JavaScript interop for WebAssembly - -### Redis Integration - -Since Redis clients don't work directly in WASM, the UI communicates with Redis through: -- HTTP API endpoints for job dispatch and monitoring -- WebSocket connections for real-time updates (planned) -- Backend service proxy for Redis operations - -## Example Scripts - -When using the `--example-dir` parameter, the UI will load `.rhai` scripts from the specified directory. Example structure: - -``` -examples/ -├── hello_world.rhai -├── math_operations.rhai -├── data_processing.rhai -└── workflow_example.rhai -``` - -Each script should be a valid Rhai script that can be executed by the actor. - -## Building for Production - -1. Build the WASM application: -```bash -wasm-pack build --target web --features wasm --out-dir pkg -``` - -2. Serve the files using any HTTP server: -```bash -python3 -m http.server 8080 -``` - -## Troubleshooting - -### WASM Build Issues -- Ensure `wasm32-unknown-unknown` target is installed -- Check that `wasm-pack` is available in PATH -- Verify all WASM dependencies are properly configured - -### Runtime Issues -- Check browser console for JavaScript errors -- Ensure Redis is running and accessible -- Verify actor binary path is correct -- Check network connectivity for Bootstrap CDN resources - -### Performance -- The UI is optimized for modern browsers with WebAssembly support -- For better performance, consider serving static assets locally -- Monitor browser memory usage for long-running sessions - -## Contributing - -When adding new features: -1. Update the appropriate page component in `src/ui/pages/` -2. Add new components to `src/ui/components/` -3. Update the router configuration if needed -4. Test with both mock and real data -5. Update this README with new features - -## License - -This project follows the same license as the parent Baobab project. diff --git a/core/actor/Trunk.toml b/core/actor/Trunk.toml deleted file mode 100644 index aa22838..0000000 --- a/core/actor/Trunk.toml +++ /dev/null @@ -1,16 +0,0 @@ -[build] -target = "index.html" -dist = "dist" - -[watch] -watch = ["src", "Cargo.toml"] -ignore = ["dist"] - -[serve] -address = "127.0.0.1" -port = 8080 -open = false - -[clean] -dist = "dist" -cargo = true diff --git a/core/actor/cmd/baobab_actor_ui/Cargo.lock b/core/actor/cmd/baobab_actor_ui/Cargo.lock deleted file mode 100644 index 286c3f7..0000000 --- a/core/actor/cmd/baobab_actor_ui/Cargo.lock +++ /dev/null @@ -1,2541 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "addr2line" -version = "0.24.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" -dependencies = [ - "gimli", -] - -[[package]] -name = "adler2" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - -[[package]] -name = "anstream" -version = "0.6.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" -dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "is_terminal_polyfill", - "utf8parse", -] - -[[package]] -name = "anstyle" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" - -[[package]] -name = "anstyle-parse" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" -dependencies = [ - "utf8parse", -] - -[[package]] -name = "anstyle-query" -version = "1.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" -dependencies = [ - "windows-sys 0.60.2", -] - -[[package]] -name = "anstyle-wincon" -version = "3.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" -dependencies = [ - "anstyle", - "once_cell_polyfill", - "windows-sys 0.60.2", -] - -[[package]] -name = "anymap2" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" - -[[package]] -name = "async-trait" -version = "0.1.88" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "autocfg" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - -[[package]] -name = "backtrace" -version = "0.3.75" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" -dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object", - "rustc-demangle", - "windows-targets 0.52.6", -] - -[[package]] -name = "baobab_actor_ui" -version = "0.1.0" -dependencies = [ - "async-trait", - "clap", - "flate2", - "gloo-console 0.3.0", - "gloo-net 0.4.0", - "gloo-utils 0.2.0", - "js-sys", - "log", - "reqwest", - "serde", - "serde_json", - "tar", - "tokio", - "urlencoding", - "uuid", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-logger", - "web-sys", - "yew", - "yew-router", -] - -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bitflags" -version = "2.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" - -[[package]] -name = "boolinator" -version = "2.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfa8873f51c92e232f9bac4065cddef41b714152812bfc5f7672ba16d6ef8cd9" - -[[package]] -name = "bumpalo" -version = "3.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" - -[[package]] -name = "bytes" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" - -[[package]] -name = "cc" -version = "1.2.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2" -dependencies = [ - "shlex", -] - -[[package]] -name = "cfg-if" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" - -[[package]] -name = "clap" -version = "4.5.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882" -dependencies = [ - "clap_builder", - "clap_derive", -] - -[[package]] -name = "clap_builder" -version = "4.5.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966" -dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim", -] - -[[package]] -name = "clap_derive" -version = "4.5.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "clap_lex" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" - -[[package]] -name = "colorchoice" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" - -[[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 = "core-foundation" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" - -[[package]] -name = "crc32fast" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "displaydoc" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "encoding_rs" -version = "0.8.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "equivalent" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - -[[package]] -name = "errno" -version = "0.3.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" -dependencies = [ - "libc", - "windows-sys 0.60.2", -] - -[[package]] -name = "fastrand" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" - -[[package]] -name = "filetime" -version = "0.2.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" -dependencies = [ - "cfg-if", - "libc", - "libredox", - "windows-sys 0.59.0", -] - -[[package]] -name = "flate2" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" -dependencies = [ - "crc32fast", - "miniz_oxide", -] - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -dependencies = [ - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-shared" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" - -[[package]] -name = "form_urlencoded" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" -dependencies = [ - "percent-encoding", -] - -[[package]] -name = "futures" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-channel" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" -dependencies = [ - "futures-core", - "futures-sink", -] - -[[package]] -name = "futures-core" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - -[[package]] -name = "futures-io" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - -[[package]] -name = "futures-macro" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "futures-sink" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - -[[package]] -name = "futures-task" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - -[[package]] -name = "futures-util" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", -] - -[[package]] -name = "getrandom" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" -dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "wasm-bindgen", -] - -[[package]] -name = "getrandom" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" -dependencies = [ - "cfg-if", - "libc", - "r-efi", - "wasi 0.14.2+wasi-0.2.4", -] - -[[package]] -name = "gimli" -version = "0.31.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" - -[[package]] -name = "gloo" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28999cda5ef6916ffd33fb4a7b87e1de633c47c0dc6d97905fee1cdaa142b94d" -dependencies = [ - "gloo-console 0.2.3", - "gloo-dialogs 0.1.1", - "gloo-events 0.1.2", - "gloo-file 0.2.3", - "gloo-history 0.1.5", - "gloo-net 0.3.1", - "gloo-render 0.1.1", - "gloo-storage 0.2.2", - "gloo-timers 0.2.6", - "gloo-utils 0.1.7", - "gloo-worker 0.2.1", -] - -[[package]] -name = "gloo" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd35526c28cc55c1db77aed6296de58677dbab863b118483a27845631d870249" -dependencies = [ - "gloo-console 0.3.0", - "gloo-dialogs 0.2.0", - "gloo-events 0.2.0", - "gloo-file 0.3.0", - "gloo-history 0.2.2", - "gloo-net 0.4.0", - "gloo-render 0.2.0", - "gloo-storage 0.3.0", - "gloo-timers 0.3.0", - "gloo-utils 0.2.0", - "gloo-worker 0.4.0", -] - -[[package]] -name = "gloo-console" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b7ce3c05debe147233596904981848862b068862e9ec3e34be446077190d3f" -dependencies = [ - "gloo-utils 0.1.7", - "js-sys", - "serde", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "gloo-console" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a17868f56b4a24f677b17c8cb69958385102fa879418052d60b50bc1727e261" -dependencies = [ - "gloo-utils 0.2.0", - "js-sys", - "serde", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "gloo-dialogs" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67062364ac72d27f08445a46cab428188e2e224ec9e37efdba48ae8c289002e6" -dependencies = [ - "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.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68b107f8abed8105e4182de63845afcc7b69c098b7852a813ea7462a320992fc" -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.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d5564e570a38b43d78bdc063374a0c3098c4f0d64005b12f9bbe87e869b6d7" -dependencies = [ - "gloo-events 0.1.2", - "js-sys", - "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 = [ - "futures-channel", - "gloo-events 0.2.0", - "js-sys", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "gloo-history" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85725d90bf0ed47063b3930ef28e863658a7905989e9929a8708aab74a1d5e7f" -dependencies = [ - "gloo-events 0.1.2", - "gloo-utils 0.1.7", - "serde", - "serde-wasm-bindgen 0.5.0", - "serde_urlencoded", - "thiserror", - "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.16", - "gloo-events 0.2.0", - "gloo-utils 0.2.0", - "serde", - "serde-wasm-bindgen 0.6.5", - "serde_urlencoded", - "thiserror", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "gloo-net" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a66b4e3c7d9ed8d315fd6b97c8b1f74a7c6ecbbc2320e65ae7ed38b7068cc620" -dependencies = [ - "futures-channel", - "futures-core", - "futures-sink", - "gloo-utils 0.1.7", - "http", - "js-sys", - "pin-project", - "serde", - "serde_json", - "thiserror", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "gloo-net" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ac9e8288ae2c632fa9f8657ac70bfe38a1530f345282d7ba66a1f70b72b7dc4" -dependencies = [ - "futures-channel", - "futures-core", - "futures-sink", - "gloo-utils 0.2.0", - "http", - "js-sys", - "pin-project", - "serde", - "serde_json", - "thiserror", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "gloo-render" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd9306aef67cfd4449823aadcd14e3958e0800aa2183955a309112a84ec7764" -dependencies = [ - "wasm-bindgen", - "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.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d6ab60bf5dbfd6f0ed1f7843da31b41010515c745735c970e821945ca91e480" -dependencies = [ - "gloo-utils 0.1.7", - "js-sys", - "serde", - "serde_json", - "thiserror", - "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 0.2.0", - "js-sys", - "serde", - "serde_json", - "thiserror", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "gloo-timers" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "gloo-timers" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" -dependencies = [ - "futures-channel", - "futures-core", - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "gloo-utils" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "037fcb07216cb3a30f7292bd0176b050b7b9a052ba830ef7d5d65f6dc64ba58e" -dependencies = [ - "js-sys", - "serde", - "serde_json", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "gloo-utils" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" -dependencies = [ - "js-sys", - "serde", - "serde_json", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "gloo-worker" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13471584da78061a28306d1359dd0178d8d6fc1c7c80e5e35d27260346e0516a" -dependencies = [ - "anymap2", - "bincode", - "gloo-console 0.2.3", - "gloo-utils 0.1.7", - "js-sys", - "serde", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "gloo-worker" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76495d3dd87de51da268fa3a593da118ab43eb7f8809e17eb38d3319b424e400" -dependencies = [ - "bincode", - "futures", - "gloo-utils 0.2.0", - "gloo-worker-macros", - "js-sys", - "pinned", - "serde", - "thiserror", - "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", - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "h2" -version = "0.3.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" -dependencies = [ - "bytes", - "fnv", - "futures-core", - "futures-sink", - "futures-util", - "http", - "indexmap", - "slab", - "tokio", - "tokio-util", - "tracing", -] - -[[package]] -name = "hashbrown" -version = "0.15.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" - -[[package]] -name = "heck" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - -[[package]] -name = "hermit-abi" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" - -[[package]] -name = "http" -version = "0.2.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" -dependencies = [ - "bytes", - "fnv", - "itoa", -] - -[[package]] -name = "http-body" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" -dependencies = [ - "bytes", - "http", - "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" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - -[[package]] -name = "hyper" -version = "0.14.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" -dependencies = [ - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "socket2 0.5.10", - "tokio", - "tower-service", - "tracing", - "want", -] - -[[package]] -name = "hyper-tls" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" -dependencies = [ - "bytes", - "hyper", - "native-tls", - "tokio", - "tokio-native-tls", -] - -[[package]] -name = "icu_collections" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" -dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", -] - -[[package]] -name = "icu_locale_core" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" -dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", -] - -[[package]] -name = "icu_normalizer" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" -dependencies = [ - "displaydoc", - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", -] - -[[package]] -name = "icu_normalizer_data" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" - -[[package]] -name = "icu_properties" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" -dependencies = [ - "displaydoc", - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "potential_utf", - "zerotrie", - "zerovec", -] - -[[package]] -name = "icu_properties_data" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" - -[[package]] -name = "icu_provider" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" -dependencies = [ - "displaydoc", - "icu_locale_core", - "stable_deref_trait", - "tinystr", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", -] - -[[package]] -name = "idna" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" -dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", -] - -[[package]] -name = "idna_adapter" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" -dependencies = [ - "icu_normalizer", - "icu_properties", -] - -[[package]] -name = "implicit-clone" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8a9aa791c7b5a71b636b7a68207fdebf171ddfc593d9c8506ec4cbc527b6a84" -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.104", -] - -[[package]] -name = "indexmap" -version = "2.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" -dependencies = [ - "equivalent", - "hashbrown", -] - -[[package]] -name = "io-uring" -version = "0.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" -dependencies = [ - "bitflags 2.9.1", - "cfg-if", - "libc", -] - -[[package]] -name = "ipnet" -version = "2.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - -[[package]] -name = "is_terminal_polyfill" -version = "1.70.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" - -[[package]] -name = "itoa" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" - -[[package]] -name = "js-sys" -version = "0.3.77" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" -dependencies = [ - "once_cell", - "wasm-bindgen", -] - -[[package]] -name = "libc" -version = "0.2.174" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" - -[[package]] -name = "libredox" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" -dependencies = [ - "bitflags 2.9.1", - "libc", - "redox_syscall", -] - -[[package]] -name = "linux-raw-sys" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" - -[[package]] -name = "litemap" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" - -[[package]] -name = "lock_api" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" - -[[package]] -name = "memchr" -version = "2.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" - -[[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - -[[package]] -name = "miniz_oxide" -version = "0.8.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" -dependencies = [ - "adler2", -] - -[[package]] -name = "mio" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" -dependencies = [ - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.59.0", -] - -[[package]] -name = "native-tls" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" -dependencies = [ - "libc", - "log", - "openssl", - "openssl-probe", - "openssl-sys", - "schannel", - "security-framework", - "security-framework-sys", - "tempfile", -] - -[[package]] -name = "num_cpus" -version = "1.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" -dependencies = [ - "hermit-abi", - "libc", -] - -[[package]] -name = "object" -version = "0.36.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" -dependencies = [ - "memchr", -] - -[[package]] -name = "once_cell" -version = "1.21.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - -[[package]] -name = "once_cell_polyfill" -version = "1.70.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" - -[[package]] -name = "openssl" -version = "0.10.73" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" -dependencies = [ - "bitflags 2.9.1", - "cfg-if", - "foreign-types", - "libc", - "once_cell", - "openssl-macros", - "openssl-sys", -] - -[[package]] -name = "openssl-macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "openssl-probe" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" - -[[package]] -name = "openssl-sys" -version = "0.9.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" -dependencies = [ - "cc", - "libc", - "pkg-config", - "vcpkg", -] - -[[package]] -name = "parking_lot" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" -dependencies = [ - "lock_api", - "parking_lot_core", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "smallvec", - "windows-targets 0.52.6", -] - -[[package]] -name = "percent-encoding" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" - -[[package]] -name = "pin-project" -version = "1.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "pin-project-lite" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - -[[package]] -name = "pin-utils" -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", -] - -[[package]] -name = "pkg-config" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" - -[[package]] -name = "potential_utf" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" -dependencies = [ - "zerovec", -] - -[[package]] -name = "prettyplease" -version = "0.2.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2" -dependencies = [ - "proc-macro2", - "syn 2.0.104", -] - -[[package]] -name = "proc-macro-crate" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" -dependencies = [ - "once_cell", - "toml_edit", -] - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[package]] -name = "proc-macro2" -version = "1.0.95" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "prokio" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03b55e106e5791fa5a13abd13c85d6127312e8e09098059ca2bc9b03ca4cf488" -dependencies = [ - "futures", - "gloo 0.8.1", - "num_cpus", - "once_cell", - "pin-project", - "pinned", - "tokio", - "tokio-stream", - "wasm-bindgen-futures", -] - -[[package]] -name = "quote" -version = "1.0.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "r-efi" -version = "5.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" - -[[package]] -name = "redox_syscall" -version = "0.5.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" -dependencies = [ - "bitflags 2.9.1", -] - -[[package]] -name = "reqwest" -version = "0.11.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" -dependencies = [ - "base64", - "bytes", - "encoding_rs", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "hyper", - "hyper-tls", - "ipnet", - "js-sys", - "log", - "mime", - "native-tls", - "once_cell", - "percent-encoding", - "pin-project-lite", - "rustls-pemfile", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "system-configuration", - "tokio", - "tokio-native-tls", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", - "winreg", -] - -[[package]] -name = "route-recognizer" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746" - -[[package]] -name = "rustc-demangle" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" - -[[package]] -name = "rustix" -version = "1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8" -dependencies = [ - "bitflags 2.9.1", - "errno", - "libc", - "linux-raw-sys", - "windows-sys 0.60.2", -] - -[[package]] -name = "rustls-pemfile" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" -dependencies = [ - "base64", -] - -[[package]] -name = "rustversion" -version = "1.0.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" - -[[package]] -name = "ryu" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" - -[[package]] -name = "schannel" -version = "0.1.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" -dependencies = [ - "windows-sys 0.59.0", -] - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] -name = "security-framework" -version = "2.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" -dependencies = [ - "bitflags 2.9.1", - "core-foundation", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework-sys" -version = "2.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "serde" -version = "1.0.219" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde-wasm-bindgen" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" -dependencies = [ - "js-sys", - "serde", - "wasm-bindgen", -] - -[[package]] -name = "serde-wasm-bindgen" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" -dependencies = [ - "js-sys", - "serde", - "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.104", -] - -[[package]] -name = "serde_json" -version = "1.0.142" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7" -dependencies = [ - "itoa", - "memchr", - "ryu", - "serde", -] - -[[package]] -name = "serde_urlencoded" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "signal-hook-registry" -version = "1.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" -dependencies = [ - "libc", -] - -[[package]] -name = "slab" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" - -[[package]] -name = "smallvec" -version = "1.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - -[[package]] -name = "socket2" -version = "0.5.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" -dependencies = [ - "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "socket2" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" -dependencies = [ - "libc", - "windows-sys 0.59.0", -] - -[[package]] -name = "stable_deref_trait" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" - -[[package]] -name = "strsim" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - -[[package]] -name = "syn" -version = "1.0.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" -dependencies = [ - "proc-macro2", - "unicode-ident", -] - -[[package]] -name = "syn" -version = "2.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "sync_wrapper" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" - -[[package]] -name = "synstructure" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "system-configuration" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" -dependencies = [ - "bitflags 1.3.2", - "core-foundation", - "system-configuration-sys", -] - -[[package]] -name = "system-configuration-sys" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "tar" -version = "0.4.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" -dependencies = [ - "filetime", - "libc", - "xattr", -] - -[[package]] -name = "tempfile" -version = "3.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" -dependencies = [ - "fastrand", - "getrandom 0.3.3", - "once_cell", - "rustix", - "windows-sys 0.59.0", -] - -[[package]] -name = "thiserror" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "tinystr" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" -dependencies = [ - "displaydoc", - "zerovec", -] - -[[package]] -name = "tokio" -version = "1.47.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" -dependencies = [ - "backtrace", - "bytes", - "io-uring", - "libc", - "mio", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "slab", - "socket2 0.6.0", - "tokio-macros", - "windows-sys 0.59.0", -] - -[[package]] -name = "tokio-macros" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "tokio-native-tls" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" -dependencies = [ - "native-tls", - "tokio", -] - -[[package]] -name = "tokio-stream" -version = "0.1.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" -dependencies = [ - "futures-core", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.7.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "toml_datetime" -version = "0.6.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" - -[[package]] -name = "toml_edit" -version = "0.19.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" -dependencies = [ - "indexmap", - "toml_datetime", - "winnow", -] - -[[package]] -name = "tower-service" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - -[[package]] -name = "tracing" -version = "0.1.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" -dependencies = [ - "pin-project-lite", - "tracing-attributes", - "tracing-core", -] - -[[package]] -name = "tracing-attributes" -version = "0.1.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "tracing-core" -version = "0.1.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" -dependencies = [ - "once_cell", -] - -[[package]] -name = "try-lock" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - -[[package]] -name = "unicode-ident" -version = "1.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" - -[[package]] -name = "url" -version = "2.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" -dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", -] - -[[package]] -name = "urlencoding" -version = "2.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" - -[[package]] -name = "utf8_iter" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - -[[package]] -name = "utf8parse" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" - -[[package]] -name = "uuid" -version = "1.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" -dependencies = [ - "getrandom 0.3.3", - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - -[[package]] -name = "version_check" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - -[[package]] -name = "want" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" -dependencies = [ - "try-lock", -] - -[[package]] -name = "wasi" -version = "0.11.1+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" - -[[package]] -name = "wasi" -version = "0.14.2+wasi-0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" -dependencies = [ - "wit-bindgen-rt", -] - -[[package]] -name = "wasm-bindgen" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" -dependencies = [ - "cfg-if", - "once_cell", - "rustversion", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" -dependencies = [ - "bumpalo", - "log", - "proc-macro2", - "quote", - "syn 2.0.104", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.4.50" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" -dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" -dependencies = [ - "unicode-ident", -] - -[[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.77" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "windows-link" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" - -[[package]] -name = "windows-sys" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" -dependencies = [ - "windows-targets 0.48.5", -] - -[[package]] -name = "windows-sys" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-sys" -version = "0.60.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" -dependencies = [ - "windows-targets 0.53.3", -] - -[[package]] -name = "windows-targets" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" -dependencies = [ - "windows_aarch64_gnullvm 0.48.5", - "windows_aarch64_msvc 0.48.5", - "windows_i686_gnu 0.48.5", - "windows_i686_msvc 0.48.5", - "windows_x86_64_gnu 0.48.5", - "windows_x86_64_gnullvm 0.48.5", - "windows_x86_64_msvc 0.48.5", -] - -[[package]] -name = "windows-targets" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" -dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", -] - -[[package]] -name = "windows-targets" -version = "0.53.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" -dependencies = [ - "windows-link", - "windows_aarch64_gnullvm 0.53.0", - "windows_aarch64_msvc 0.53.0", - "windows_i686_gnu 0.53.0", - "windows_i686_gnullvm 0.53.0", - "windows_i686_msvc 0.53.0", - "windows_x86_64_gnu 0.53.0", - "windows_x86_64_gnullvm 0.53.0", - "windows_x86_64_msvc 0.53.0", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" - -[[package]] -name = "windows_i686_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" - -[[package]] -name = "windows_i686_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - -[[package]] -name = "windows_i686_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" - -[[package]] -name = "windows_i686_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - -[[package]] -name = "windows_i686_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" - -[[package]] -name = "winnow" -version = "0.5.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" -dependencies = [ - "memchr", -] - -[[package]] -name = "winreg" -version = "0.50.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - -[[package]] -name = "wit-bindgen-rt" -version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" -dependencies = [ - "bitflags 2.9.1", -] - -[[package]] -name = "writeable" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" - -[[package]] -name = "xattr" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909" -dependencies = [ - "libc", - "rustix", -] - -[[package]] -name = "yew" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f1a03f255c70c7aa3e9c62e15292f142ede0564123543c1cc0c7a4f31660cac" -dependencies = [ - "console_error_panic_hook", - "futures", - "gloo 0.10.0", - "implicit-clone", - "indexmap", - "js-sys", - "prokio", - "rustversion", - "serde", - "slab", - "thiserror", - "tokio", - "tracing", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", - "yew-macro", -] - -[[package]] -name = "yew-macro" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02fd8ca5166d69e59f796500a2ce432ff751edecbbb308ca59fd3fe4d0343de2" -dependencies = [ - "boolinator", - "once_cell", - "prettyplease", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "yew-router" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ca1d5052c96e6762b4d6209a8aded597758d442e6c479995faf0c7b5538e0c6" -dependencies = [ - "gloo 0.10.0", - "js-sys", - "route-recognizer", - "serde", - "serde_urlencoded", - "tracing", - "urlencoding", - "wasm-bindgen", - "web-sys", - "yew", - "yew-router-macro", -] - -[[package]] -name = "yew-router-macro" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42bfd190a07ca8cfde7cd4c52b3ac463803dc07323db8c34daa697e86365978c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] - -[[package]] -name = "yoke" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" -dependencies = [ - "serde", - "stable_deref_trait", - "yoke-derive", - "zerofrom", -] - -[[package]] -name = "yoke-derive" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", - "synstructure", -] - -[[package]] -name = "zerofrom" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" -dependencies = [ - "zerofrom-derive", -] - -[[package]] -name = "zerofrom-derive" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", - "synstructure", -] - -[[package]] -name = "zerotrie" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" -dependencies = [ - "displaydoc", - "yoke", - "zerofrom", -] - -[[package]] -name = "zerovec" -version = "0.11.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" -dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", -] - -[[package]] -name = "zerovec-derive" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] diff --git a/core/actor/cmd/baobab_actor_ui/Cargo.toml b/core/actor/cmd/baobab_actor_ui/Cargo.toml deleted file mode 100644 index 153958f..0000000 --- a/core/actor/cmd/baobab_actor_ui/Cargo.toml +++ /dev/null @@ -1,49 +0,0 @@ -[package] -name = "baobab_actor_ui" -version = "0.1.0" -edition = "2021" - -[workspace] -# Empty workspace table to exclude from parent workspace - -[lib] -crate-type = ["cdylib"] - -[[bin]] -name = "baobab_actor_ui" -path = "src/main.rs" - -[dependencies] -# Core WASM-only dependencies -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" - -# WASM UI dependencies -yew = { version = "0.21", features = ["csr"] } -yew-router = "0.18" -wasm-bindgen = "0.2" -wasm-bindgen-futures = "0.4" -web-sys = "0.3" -js-sys = "0.3" -gloo-net = "0.4" -gloo-console = "0.3" -wasm-logger = "0.2" - -# Only include WASM-compatible dependencies -[target.'cfg(target_arch = "wasm32")'.dependencies] -gloo-utils = "0.2" - -# Native-only dependencies for the binary -[target.'cfg(not(target_arch = "wasm32"))'.dependencies] -clap = { version = "4.0", features = ["derive"] } -tokio = { version = "1.0", features = ["full"] } -reqwest = { version = "0.11", features = ["json"] } -flate2 = "1.0" -tar = "0.4" -uuid = { version = "1.0", features = ["v4"] } -async-trait = "0.1" -log = "0.4" - -[features] -default = [] -wasm = [] diff --git a/core/actor/cmd/baobab_actor_ui/README.md b/core/actor/cmd/baobab_actor_ui/README.md deleted file mode 100644 index b9a4516..0000000 --- a/core/actor/cmd/baobab_actor_ui/README.md +++ /dev/null @@ -1,156 +0,0 @@ -# Baobab Actor UI - -A self-contained WASM-based user interface for monitoring and dispatching jobs to Hero actors with automatic Webdis installation. - -## Features - -- 🚀 **Self-contained binary** - No separate installation required -- 📦 **Automatic Webdis installation** - Downloads and configures Webdis automatically -- 🌐 **WASM UI** - Modern web-based interface built with Yew -- 🔄 **Real-time job monitoring** - Live updates of job status and progress -- 📝 **Script execution** - Run and test Rhai scripts directly in the browser -- 📊 **Actor dashboard** - Overview of actor status and job statistics -- 🔍 **Job inspector** - Detailed job parameter editing and output viewing -- 📚 **Example scripts** - Load and run example scripts from a directory - -## Installation & Usage - -### Prerequisites - -- Rust toolchain with `wasm-pack` installed -- Redis server running (for job storage) -- Python 3 (for HTTP server) -- `curl` and `tar` (for Webdis installation) - -### Quick Start - -```bash -# Navigate to the binary directory -cd core/actor/cmd/baobab_actor_ui - -# Run the UI (will automatically install Webdis) -cargo run -- --id myactor --path /path/to/actor/binary - -# Open browser to http://localhost:8080 -``` - -### Command Line Options - -```bash -baobab_actor_ui [OPTIONS] --id --path - -Options: - --id Actor ID - --path Path to actor binary - --example-dir Directory containing example .rhai scripts - --webdis-url Webdis connection URL [default: http://localhost:7379] - --port Port to serve the UI on [default: 8080] - --skip-webdis Skip Webdis installation (assume it's already running) - --webdis-port Webdis port [default: 7379] - -h, --help Print help -``` - -### Examples - -```bash -# Basic usage -cargo run -- --id osis --path /usr/local/bin/osis_actor - -# With example scripts directory -cargo run -- --id system --path ./system_actor --example-dir ./examples - -# Custom ports -cargo run -- --id myactor --path ./actor --port 3000 --webdis-port 7380 - -# Skip Webdis installation (if already running) -cargo run -- --id myactor --path ./actor --skip-webdis -``` - -## Architecture - -### Components - -- **Main Binary** (`main.rs`) - CLI interface and Webdis management -- **WASM Library** (`lib.rs`) - Entry point for the web application -- **UI Components**: - - `app.rs` - Main application component - - `router.rs` - Navigation and routing - - `pages/` - Individual page components (Dashboard, Inspector, Jobs, Examples) - - `components/` - Reusable UI components - - `redis_client.rs` - Webdis HTTP client for Redis operations - -### Webdis Integration - -The binary automatically: -1. Downloads the appropriate Webdis release for your platform -2. Extracts and configures Webdis with secure settings -3. Starts Webdis as a background process -4. Provides HTTP access to Redis following the Hero protocol - -### Hero Protocol Compliance - -The UI follows the Hero Supervisor Redis protocol: -- Jobs stored as `hero:job:{id}` hashes -- Work queues as `hero:work_queue:{actor_id}` lists -- Stop queues as `hero:stop_queue` lists -- Full compatibility with core/job model - -## Development - -### Building - -```bash -# Build the WASM component -wasm-pack build --target web --features wasm - -# Build the native binary -cargo build --release -``` - -### Project Structure - -``` -baobab_actor_ui/ -├── Cargo.toml # Dependencies and configuration -├── README.md # This file -├── main.rs # CLI binary with Webdis management -├── lib.rs # WASM entry point -├── app.rs # Main Yew application -├── router.rs # Navigation routing -├── redis_client.rs # Webdis HTTP client -├── pages/ # UI pages -│ ├── mod.rs -│ ├── dashboard.rs # Actor overview -│ ├── inspector.rs # Script editor and job runner -│ ├── jobs.rs # Job list and monitoring -│ └── examples.rs # Example script browser -└── components/ # Reusable components - ├── mod.rs - └── script_execution_panel.rs -``` - -## Troubleshooting - -### Webdis Installation Issues - -If automatic Webdis installation fails: -1. Install Webdis manually from [releases](https://github.com/nicolasff/webdis/releases) -2. Start it with: `./webdis webdis.json` -3. Use `--skip-webdis` flag - -### WASM Build Issues - -Ensure you have the latest `wasm-pack`: -```bash -curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -``` - -### Redis Connection Issues - -- Ensure Redis is running on localhost:6379 -- Check Webdis logs for connection errors -- Verify firewall settings allow connections - -## License - -Part of the Hero framework ecosystem. diff --git a/core/actor/cmd/baobab_actor_ui/Trunk.toml b/core/actor/cmd/baobab_actor_ui/Trunk.toml deleted file mode 100644 index a136663..0000000 --- a/core/actor/cmd/baobab_actor_ui/Trunk.toml +++ /dev/null @@ -1,31 +0,0 @@ -[build] -target = "index.html" -dist = "dist" - -[serve] -address = "127.0.0.1" -port = 8080 -open = true - -[tools] -# Aggressive WASM optimization with wasm-opt -wasm-opt = [ - "-Os", # Optimize for size - "--enable-mutable-globals", - "--enable-sign-ext", - "--enable-nontrapping-float-to-int", - "--enable-bulk-memory", - "--strip-debug", # Remove debug info - "--strip-producers", # Remove producer info - "--dce", # Dead code elimination - "--vacuum", # Remove unused code - "--merge-blocks", # Merge basic blocks - "--precompute", # Precompute expressions - "--precompute-propagate", # Propagate precomputed values - "--remove-unused-names", # Remove unused function names - "--simplify-locals", # Simplify local variables - "--coalesce-locals", # Coalesce local variables - "--reorder-locals", # Reorder locals for better compression - "--flatten", # Flatten control flow - "--rereloop", # Optimize loops -] diff --git a/core/actor/cmd/baobab_actor_ui/build.sh b/core/actor/cmd/baobab_actor_ui/build.sh deleted file mode 100755 index 4f3ebdc..0000000 --- a/core/actor/cmd/baobab_actor_ui/build.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -# Build script for baobab_actor_ui WASM app -# Based on examples/website/build.sh - -set -e - -echo "🔧 Building Baobab Actor UI..." - -# Check if trunk is installed -if ! command -v trunk &> /dev/null; then - echo "📦 Installing trunk..." - cargo install trunk -fi - -# Build the WASM app -echo "🚀 Building WASM application..." -trunk build --release - -echo "✅ Build complete! Output in dist/ directory" diff --git a/core/actor/cmd/baobab_actor_ui/index.html b/core/actor/cmd/baobab_actor_ui/index.html deleted file mode 100644 index df94561..0000000 --- a/core/actor/cmd/baobab_actor_ui/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - Baobab Actor UI - - - - - -
-
-
-
- Loading... -
-

Loading Baobab Actor UI...

-
-
-
- - - - diff --git a/core/actor/cmd/baobab_actor_ui/serve.sh b/core/actor/cmd/baobab_actor_ui/serve.sh deleted file mode 100755 index a5c40dd..0000000 --- a/core/actor/cmd/baobab_actor_ui/serve.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# Serve script for baobab_actor_ui WASM app -# Based on examples/website/serve.sh - -set -e - -echo "🚀 Starting Baobab Actor UI development server..." - -# Check if trunk is installed -if ! command -v trunk &> /dev/null; then - echo "📦 Installing trunk..." - cargo install trunk -fi - -# Start the development server -echo "🌐 Starting development server at http://127.0.0.1:8080" -trunk serve --open diff --git a/core/actor/cmd/baobab_actor_ui/src/app.rs b/core/actor/cmd/baobab_actor_ui/src/app.rs deleted file mode 100644 index 1932054..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/app.rs +++ /dev/null @@ -1,50 +0,0 @@ -use yew::prelude::*; -use yew_router::prelude::*; -use crate::router::{Route, switch}; - -#[derive(Properties, PartialEq, Clone)] -pub struct AppProps { - pub actor_id: String, - pub actor_path: String, - pub example_dir: Option, - pub redis_url: String, -} - -#[function_component(App)] -pub fn app(props: &AppProps) -> Html { - let props_clone = props.clone(); - html! { - -
- - -
- render={move |route| switch(route, props_clone.clone())} /> -
-
-
- } -} diff --git a/core/actor/cmd/baobab_actor_ui/src/components/mod.rs b/core/actor/cmd/baobab_actor_ui/src/components/mod.rs deleted file mode 100644 index 3570614..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/components/mod.rs +++ /dev/null @@ -1,3 +0,0 @@ -pub mod script_execution_panel; - -pub use script_execution_panel::ScriptExecutionPanel; diff --git a/core/actor/cmd/baobab_actor_ui/src/components/script_execution_panel.rs b/core/actor/cmd/baobab_actor_ui/src/components/script_execution_panel.rs deleted file mode 100644 index ec8f81f..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/components/script_execution_panel.rs +++ /dev/null @@ -1,98 +0,0 @@ -use yew::prelude::*; - -#[derive(Properties, PartialEq)] -pub struct ScriptExecutionPanelProps { - pub script_content: String, - pub script_filename: String, - pub output_content: Option, - pub on_run: Callback<()>, - pub is_running: bool, -} - -#[function_component(ScriptExecutionPanel)] -pub fn script_execution_panel(props: &ScriptExecutionPanelProps) -> Html { - let on_run_click = { - let on_run = props.on_run.clone(); - Callback::from(move |_: MouseEvent| { - on_run.emit(()); - }) - }; - - html! { -
-
-
-
-
-
{"Script Content"}
- {if !props.script_filename.is_empty() { - html! { {&props.script_filename} } - } else { - html! {} - }} -
- -
-
-
-                            {&props.script_content}
-                        
-
-
-
- -
-
-
-
{"Execution Output"}
-
-
- {if let Some(output) = &props.output_content { - html! { -
-                                    {output}
-                                
- } - } else if props.is_running { - html! { -
-
- {"Loading..."} -
-

{"Executing script..."}

-
- } - } else { - html! { -
- -

{"Output will appear here after execution"}

-
- } - }} -
-
-
-
- } -} diff --git a/core/actor/cmd/baobab_actor_ui/src/lib.rs b/core/actor/cmd/baobab_actor_ui/src/lib.rs deleted file mode 100644 index 6030cab..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/lib.rs +++ /dev/null @@ -1,18 +0,0 @@ -//! Baobab Actor UI - WASM Library Entry Point - -use wasm_bindgen::prelude::*; -use yew::prelude::*; - -mod app; -mod router; -mod pages; -mod components; -// mod redis_client; // Temporarily disabled - -use app::App; - -#[wasm_bindgen(start)] -pub fn run_app() { - wasm_logger::init(wasm_logger::Config::default()); - yew::Renderer::::new().render(); -} diff --git a/core/actor/cmd/baobab_actor_ui/src/main.rs b/core/actor/cmd/baobab_actor_ui/src/main.rs deleted file mode 100644 index 595e56e..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/main.rs +++ /dev/null @@ -1,325 +0,0 @@ -//! Baobab Actor UI - Self-contained WASM UI with automatic Webdis installation -//! -//! This binary provides a complete actor monitoring and job dispatch interface -//! with automatic Webdis installation and management. - -use clap::Parser; -use std::path::PathBuf; -use std::process::{Command, Stdio}; -use std::fs; -use std::io::Write; -use tokio::time::{sleep, Duration}; - -mod app; -mod router; -mod pages; -mod components; -mod redis_client; - -use app::App; - -#[derive(Parser, Debug)] -#[command(name = "baobab_actor_ui")] -#[command(about = "Baobab Actor UI - Monitor and dispatch jobs to actors")] -pub struct Args { - /// Actor ID - #[arg(long)] - pub id: String, - - /// Path to actor binary - #[arg(long)] - pub path: PathBuf, - - /// Directory containing example .rhai scripts - #[arg(long)] - pub example_dir: Option, - - /// Webdis connection URL - #[arg(long, default_value = "http://localhost:7379")] - pub webdis_url: String, - - /// Port to serve the UI on - #[arg(long, default_value = "8080")] - pub port: u16, - - /// Skip Webdis installation (assume it's already running) - #[arg(long)] - pub skip_webdis: bool, - - /// Webdis port - #[arg(long, default_value = "7379")] - pub webdis_port: u16, -} - -#[tokio::main] -async fn main() -> Result<(), Box> { - let args = Args::parse(); - - println!("🚀 Starting Baobab Actor UI..."); - println!("Actor ID: {}", args.id); - println!("Actor Path: {}", args.path.display()); - println!("Webdis URL: {}", args.webdis_url); - println!("Port: {}", args.port); - - if let Some(example_dir) = &args.example_dir { - println!("Example Directory: {}", example_dir.display()); - } - - // Install and start Webdis if not skipped - if !args.skip_webdis { - println!("📦 Installing and starting Webdis..."); - install_and_start_webdis(args.webdis_port).await?; - } else { - println!("⏭️ Skipping Webdis installation (--skip-webdis specified)"); - } - - // Build WASM app - println!("🔨 Building WASM application..."); - build_wasm_app().await?; - - // Generate HTML file - println!("📄 Generating HTML file..."); - let html_content = generate_html(&args); - let html_path = "index.html"; - fs::write(html_path, html_content)?; - - // Start HTTP server - println!("🌐 Starting HTTP server on port {}...", args.port); - start_http_server(args.port).await?; - - Ok(()) -} - -/// Install Webdis from official releases and start it -async fn install_and_start_webdis(port: u16) -> Result<(), Box> { - let webdis_dir = "webdis"; - let webdis_binary = format!("{}/webdis", webdis_dir); - - // Check if Webdis is already installed - if !std::path::Path::new(&webdis_binary).exists() { - println!("📥 Downloading Webdis..."); - - // Create webdis directory - fs::create_dir_all(webdis_dir)?; - - // Determine platform and download appropriate release - let (platform, archive_ext) = if cfg!(target_os = "macos") { - ("darwin", "tar.gz") - } else if cfg!(target_os = "linux") { - ("linux", "tar.gz") - } else { - return Err("Unsupported platform for automatic Webdis installation".into()); - }; - - // Download latest release (using a known stable version) - let download_url = format!( - "https://github.com/nicolasff/webdis/releases/download/0.1.22/webdis-0.1.22-{}.{}", - platform, archive_ext - ); - - println!("📥 Downloading from: {}", download_url); - - let output = Command::new("curl") - .args(["-L", "-o", &format!("{}/webdis.{}", webdis_dir, archive_ext), &download_url]) - .output()?; - - if !output.status.success() { - return Err(format!("Failed to download Webdis: {}", String::from_utf8_lossy(&output.stderr)).into()); - } - - // Extract archive - println!("📦 Extracting Webdis..."); - let extract_output = Command::new("tar") - .args(["-xzf", &format!("webdis.{}", archive_ext)]) - .current_dir(webdis_dir) - .output()?; - - if !extract_output.status.success() { - return Err(format!("Failed to extract Webdis: {}", String::from_utf8_lossy(&extract_output.stderr)).into()); - } - - // Make binary executable - Command::new("chmod") - .args(["+x", "webdis"]) - .current_dir(webdis_dir) - .output()?; - } - - // Create Webdis config file - let config_content = format!( - r#"{{ - "redis_host": "127.0.0.1", - "redis_port": 6379, - "http_host": "0.0.0.0", - "http_port": {}, - "threads": 5, - "pool_size": 20, - "daemonize": false, - "websockets": false, - "database": 0, - "acl": [ - {{ - "disabled": ["DEBUG", "FLUSHDB", "FLUSHALL", "SHUTDOWN", "EVAL", "SCRIPT"] - }} - ] -}}"#, - port - ); - - fs::write(format!("{}/webdis.json", webdis_dir), config_content)?; - - // Start Webdis in background - println!("🚀 Starting Webdis on port {}...", port); - let mut webdis_process = Command::new("./webdis") - .arg("webdis.json") - .current_dir(webdis_dir) - .stdout(Stdio::null()) - .stderr(Stdio::null()) - .spawn()?; - - // Wait a moment for Webdis to start - sleep(Duration::from_secs(2)).await; - - // Check if Webdis is running - let health_check = Command::new("curl") - .args(["-s", &format!("http://localhost:{}/PING", port)]) - .output(); - - match health_check { - Ok(output) if output.status.success() => { - println!("✅ Webdis is running successfully!"); - } - _ => { - println!("⚠️ Webdis may not be running properly, but continuing..."); - } - } - - Ok(()) -} - -/// Build the WASM application -async fn build_wasm_app() -> Result<(), Box> { - let output = Command::new("wasm-pack") - .args([ - "build", - "--target", "web", - "--out-dir", "pkg", - "--features", "wasm" - ]) - .current_dir(".") - .output()?; - - if !output.status.success() { - return Err(format!("Failed to build WASM: {}", String::from_utf8_lossy(&output.stderr)).into()); - } - - println!("✅ WASM build completed successfully!"); - Ok(()) -} - -/// Generate HTML file with embedded configuration -fn generate_html(args: &Args) -> String { - let example_dir_param = args.example_dir - .as_ref() - .map(|p| p.display().to_string()) - .unwrap_or_else(|| "".to_string()); - - format!( - r#" - - - - - Baobab Actor UI - {} - - - - - -
-
-
-
- Loading... -
-

Loading Baobab Actor UI...

-
-
-
- - - - - - - -"#, - args.id, - args.id, - args.path.display(), - args.webdis_url, - example_dir_param - ) -} - -/// Start HTTP server to serve the UI -async fn start_http_server(port: u16) -> Result<(), Box> { - println!("🌐 Open your browser to: http://localhost:{}", port); - - let server_command = format!( - r#"python3 -c " -import http.server -import socketserver -import os - -class MyHTTPRequestHandler(http.server.SimpleHTTPRequestHandler): - def end_headers(self): - self.send_header('Cross-Origin-Embedder-Policy', 'require-corp') - self.send_header('Cross-Origin-Opener-Policy', 'same-origin') - super().end_headers() - -os.chdir('.') -with socketserver.TCPServer(('', {}), MyHTTPRequestHandler) as httpd: - print('Server running on port {}') - httpd.serve_forever() -""#, - port, port - ); - - let mut child = Command::new("sh") - .arg("-c") - .arg(&server_command) - .spawn()?; - - // Wait for the server (this will run indefinitely) - let _ = child.wait()?; - - Ok(()) -} diff --git a/core/actor/cmd/baobab_actor_ui/src/mod.rs b/core/actor/cmd/baobab_actor_ui/src/mod.rs deleted file mode 100644 index fcdacda..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/mod.rs +++ /dev/null @@ -1,13 +0,0 @@ -#[cfg(feature = "wasm")] -pub mod app; -#[cfg(feature = "wasm")] -pub mod components; -#[cfg(feature = "wasm")] -pub mod pages; -#[cfg(feature = "wasm")] -pub mod router; -#[cfg(feature = "wasm")] -pub mod redis_client; - -#[cfg(feature = "wasm")] -pub use app::App; diff --git a/core/actor/cmd/baobab_actor_ui/src/pages/dashboard.rs b/core/actor/cmd/baobab_actor_ui/src/pages/dashboard.rs deleted file mode 100644 index 7b26af3..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/pages/dashboard.rs +++ /dev/null @@ -1,83 +0,0 @@ -use yew::prelude::*; -use crate::app::AppProps; - -#[function_component(DashboardPage)] -pub fn dashboard_page(props: &AppProps) -> Html { - html! { -
-
-
-

{"Actor Dashboard"}

-

{format!("Monitoring actor: {}", props.actor_id)}

-
-
- -
-
-
-
-
{"Actor Status"}
-

{"Running"}

-
-
-
-
-
-
-
{"Jobs Completed"}
-

{"0"}

-
-
-
-
-
-
-
{"Jobs Pending"}
-

{"0"}

-
-
-
-
- -
-
-
-
-
{"Actor Information"}
-
-
- - - - - - - - - - - - - - - { - if let Some(example_dir) = &props.example_dir { - html! { - - - - - } - } else { - html! {} - } - } - -
{"Actor ID"}{&props.actor_id}
{"Actor Path"}{&props.actor_path}
{"Redis URL"}{&props.redis_url}
{"Example Directory"}{example_dir}
-
-
-
-
-
- } -} diff --git a/core/actor/cmd/baobab_actor_ui/src/pages/examples.rs b/core/actor/cmd/baobab_actor_ui/src/pages/examples.rs deleted file mode 100644 index d035986..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/pages/examples.rs +++ /dev/null @@ -1,214 +0,0 @@ -use yew::prelude::*; -use wasm_bindgen_futures::spawn_local; -use crate::app::AppProps; -use crate::redis_client::RedisClient; -use crate::components::ScriptExecutionPanel; - -#[derive(Clone, PartialEq)] -pub struct ExampleScript { - pub name: String, - pub filename: String, - pub description: String, - pub content: String, -} - -pub struct ExamplesPage { - examples: Vec, - selected_example: Option, - script_output: Option, - is_running: bool, -} - -pub enum ExamplesMsg { - SelectExample(String), - RunExample, - ScriptComplete(String), -} - -impl Component for ExamplesPage { - type Message = ExamplesMsg; - type Properties = AppProps; - - fn create(ctx: &Context) -> Self { - let props = ctx.props(); - - // Mock example scripts - in real implementation, these would be loaded from the example_dir - let examples = if props.example_dir.is_some() { - vec![ - ExampleScript { - name: "Hello World".to_string(), - filename: "hello_world.rhai".to_string(), - description: "A simple hello world script".to_string(), - content: "print(\"Hello from actor!\");\nprint(\"Current time: \" + timestamp());".to_string(), - }, - ExampleScript { - name: "Math Operations".to_string(), - filename: "math_ops.rhai".to_string(), - description: "Demonstrates basic mathematical operations".to_string(), - content: "let a = 10;\nlet b = 20;\nlet sum = a + b;\nprint(\"Sum: \" + sum);\nprint(\"Product: \" + (a * b));".to_string(), - }, - ExampleScript { - name: "Loop Example".to_string(), - filename: "loops.rhai".to_string(), - description: "Shows how to use loops in Rhai".to_string(), - content: "for i in range(1, 6) {\n print(\"Count: \" + i);\n}\n\nlet arr = [\"apple\", \"banana\", \"cherry\"];\nfor fruit in arr {\n print(\"Fruit: \" + fruit);\n}".to_string(), - }, - ExampleScript { - name: "Function Definition".to_string(), - filename: "functions.rhai".to_string(), - description: "Demonstrates function definitions and calls".to_string(), - content: "fn greet(name) {\n return \"Hello, \" + name + \"!\";\n}\n\nfn calculate(x, y) {\n return x * y + 10;\n}\n\nprint(greet(\"Actor\"));\nprint(\"Result: \" + calculate(5, 3));".to_string(), - }, - ] - } else { - vec![ - ExampleScript { - name: "No Examples".to_string(), - filename: "".to_string(), - description: "No example directory specified".to_string(), - content: "// No example directory was provided\nprint(\"Please specify --example-dir to load example scripts\");".to_string(), - }, - ] - }; - - Self { - examples, - selected_example: None, - script_output: None, - is_running: false, - } - } - - fn update(&mut self, ctx: &Context, msg: Self::Message) -> bool { - match msg { - ExamplesMsg::SelectExample(name) => { - self.selected_example = Some(name); - self.script_output = None; - true - } - ExamplesMsg::RunExample => { - if !self.is_running { - if let Some(selected) = &self.selected_example { - if let Some(example) = self.examples.iter().find(|e| &e.name == selected) { - self.is_running = true; - self.script_output = None; - - let script_content = example.content.clone(); - let script_name = example.name.clone(); - let link = ctx.link().clone(); - - spawn_local(async move { - // Simulate script execution - gloo::timers::future::TimeoutFuture::new(1500).await; - - let output = format!( - "Example '{}' executed successfully!\n\nScript Content:\n{}\n\nExecution Output:\n- Script dispatched to Redis\n- Actor processed the job\n- Example completed successfully\n\nExecution time: 1.2s", - script_name, script_content - ); - - link.send_message(ExamplesMsg::ScriptComplete(output)); - }); - } - } - } - true - } - ExamplesMsg::ScriptComplete(output) => { - self.script_output = Some(output); - self.is_running = false; - true - } - } - } - - fn view(&self, ctx: &Context) -> Html { - html! { -
-
-
-

{"Example Scripts"}

-

{"Run example scripts to test the actor functionality"}

-
-
- -
-
-
-
-
{"Available Examples"}
-
-
- {for self.examples.iter().map(|example| self.render_example_item(ctx, example))} -
-
-
- -
- {self.render_example_content(ctx)} -
-
-
- } - } -} - -impl ExamplesPage { - fn render_example_item(&self, ctx: &Context, example: &ExampleScript) -> Html { - let example_name = example.name.clone(); - let on_select = ctx.link().callback(move |_| ExamplesMsg::SelectExample(example_name.clone())); - - let is_selected = self.selected_example.as_ref() == Some(&example.name); - - html! { - - } - } - - fn render_example_content(&self, ctx: &Context) -> Html { - if let Some(selected_name) = &self.selected_example { - if let Some(example) = self.examples.iter().find(|e| &e.name == selected_name) { - let on_run = ctx.link().callback(|_| ExamplesMsg::RunExample); - - html! { - - } - } else { - html! { -
-
-

{"Example not found"}

-
-
- } - } - } else { - html! { -
-
- -

{"Select an example script to view and run"}

-
-
- } - } - } -} diff --git a/core/actor/cmd/baobab_actor_ui/src/pages/inspector.rs b/core/actor/cmd/baobab_actor_ui/src/pages/inspector.rs deleted file mode 100644 index cb51b2d..0000000 --- a/core/actor/cmd/baobab_actor_ui/src/pages/inspector.rs +++ /dev/null @@ -1,181 +0,0 @@ -use yew::prelude::*; -use wasm_bindgen_futures::spawn_local; -use crate::app::AppProps; - -pub struct InspectorPage { - script_content: String, - job_params: String, - script_output: Option, - is_running: bool, -} - -pub enum InspectorMsg { - UpdateScript(String), - UpdateParams(String), - RunScript, - ScriptComplete(String), -} - -impl Component for InspectorPage { - type Message = InspectorMsg; - type Properties = AppProps; - - fn create(_ctx: &Context) -> Self { - Self { - script_content: "// Enter your Rhai script here\nprint(\"Hello from actor!\");".to_string(), - job_params: "{}".to_string(), - script_output: None, - is_running: false, - } - } - - fn update(&mut self, ctx: &Context, msg: Self::Message) -> bool { - match msg { - InspectorMsg::UpdateScript(content) => { - self.script_content = content; - true - } - InspectorMsg::UpdateParams(params) => { - self.job_params = params; - true - } - InspectorMsg::RunScript => { - if !self.is_running { - self.is_running = true; - self.script_output = None; - - // Simulate job dispatch to Redis and execution - let script = self.script_content.clone(); - let params = self.job_params.clone(); - let link = ctx.link().clone(); - - spawn_local(async move { - // Simulate async job execution - gloo::timers::future::TimeoutFuture::new(2000).await; - - let output = format!( - "Job dispatched to Redis successfully!\n\nScript:\n{}\n\nParameters:\n{}\n\nExecution Output:\n- Job queued in Redis\n- Actor picked up job\n- Script executed successfully\n- Result: Script completed\n\nExecution time: 1.85s", - script, params - ); - - link.send_message(InspectorMsg::ScriptComplete(output)); - }); - } - true - } - InspectorMsg::ScriptComplete(output) => { - self.script_output = Some(output); - self.is_running = false; - true - } - } - } - - fn view(&self, ctx: &Context) -> Html { - let on_script_change = ctx.link().callback(|e: Event| { - let input: web_sys::HtmlTextAreaElement = e.target_unchecked_into(); - InspectorMsg::UpdateScript(input.value()) - }); - - let on_params_change = ctx.link().callback(|e: Event| { - let input: web_sys::HtmlTextAreaElement = e.target_unchecked_into(); - InspectorMsg::UpdateParams(input.value()) - }); - - let on_run = ctx.link().callback(|_| InspectorMsg::RunScript); - - html! { -
-
-
-

{"Script Inspector"}

-

{"Dispatch jobs directly to the actor via Redis"}

-
-
- -
-
-
-
-
{"Script Editor"}
- -
-
-
- -