Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
eecb4a7
move hyperware_app_common to process_lib
nick1udwig Aug 7, 2025
f0b2375
fix import
nick1udwig Aug 8, 2025
bcc8a47
use updated (fixed) process_lib
nick1udwig Aug 8, 2025
065486b
use fixed hyper macro
nick1udwig Aug 8, 2025
73f4d81
use `run_async!` (renamed from `hyper!`)
nick1udwig Aug 8, 2025
27e06b7
use fixed run_async v
nick1udwig Aug 8, 2025
c6f0d35
use corrected process_lib
nick1udwig Aug 12, 2025
8591722
add #[ws_client]
nick1udwig Aug 18, 2025
1e0aa03
fix channel_id type
nick1udwig Aug 19, 2025
fa7f250
respond to ws Pings with Pongs
nick1udwig Aug 19, 2025
3c6c154
fix typo
nick1udwig Aug 19, 2025
263fd18
fix more typos
nick1udwig Aug 19, 2025
1fc980f
dont overwrite the ws blob
nick1udwig Aug 19, 2025
19a2f48
make `#[ws_client]` have same fn signature as `#[ws]`
nick1udwig Aug 19, 2025
ed99c19
allow async #[ws]
nick1udwig Aug 19, 2025
6126a50
Merge pull request #33 from hyperware-ai/hf/move-hyperapp-to-process_lib
nick1udwig Aug 26, 2025
980027e
Merge pull request #34 from hyperware-ai/hf/add-ws-client
nick1udwig Aug 26, 2025
526fdaa
use hyperware_process_lib::hyperapp::spawn
nick1udwig Aug 29, 2025
f854f34
bump process_lib dep
nick1udwig Aug 29, 2025
4438266
fix spawn calls
nick1udwig Aug 29, 2025
f944312
fix semicolons
nick1udwig Aug 29, 2025
ac43744
use process_lib with working polling
nick1udwig Aug 30, 2025
a71df6f
Merge pull request #39 from hyperware-ai/hf/hyperapp-add-spawn
nick1udwig Aug 30, 2025
6eb2469
remove dead code
nick1udwig Aug 30, 2025
9c64554
added eth handler
Gohlub Sep 3, 2025
0fa4de1
removed extra comment
Gohlub Sep 3, 2025
246ebea
stricter eth handler signature
Gohlub Sep 3, 2025
d23a48f
changed logic to model more constrained handlers like ws
Gohlub Sep 3, 2025
ec6a614
fixed docs
Gohlub Sep 4, 2025
dcfea0b
better handling
Gohlub Sep 4, 2025
00fe0f1
Merge pull request #41 from hyperware-ai/feat/eth-handler
Gohlub Sep 4, 2025
66884c0
fix EthSubResult reference
nick1udwig Sep 5, 2025
98fac21
add optional ui_path field
nick1udwig Sep 24, 2025
6007937
Update README.md
jurij-jukic Sep 30, 2025
09e373b
Merge branch 'develop' into jurij-jukic-patch-1
jurij-jukic Oct 1, 2025
8c5a50b
Merge pull request #44 from hyperware-ai/jurij-jukic-patch-1
jurij-jukic Oct 1, 2025
8b6cd15
wip
jurij-jukic Oct 2, 2025
9285a7a
wip
jurij-jukic Oct 2, 2025
8c3d647
works
jurij-jukic Oct 2, 2025
998b79f
cleanup
jurij-jukic Oct 2, 2025
858b9d8
handlers finally correct
jurij-jukic Oct 2, 2025
e2ce565
reset logging level to info
jurij-jukic Oct 2, 2025
c18867a
pass http server req and blob
jurij-jukic Oct 6, 2025
7d75e54
add to error message
jurij-jukic Oct 6, 2025
ea69f8c
custom error code
jurij-jukic Oct 6, 2025
f9ebb82
dep fix
jurij-jukic Oct 6, 2025
0eda314
unexpected arm doesnt crash anymore
jurij-jukic Oct 7, 2025
ac24940
Merge pull request #45 from hyperware-ai/j/local-msg-handling
jurij-jukic Oct 8, 2025
677d682
Merge branch 'develop' into j/error-codes
jurij-jukic Oct 8, 2025
aaf7e02
Merge pull request #46 from hyperware-ai/j/error-codes
jurij-jukic Oct 8, 2025
209ee02
cleanup unreachable arm SendError
jurij-jukic Oct 9, 2025
486cff9
handle drop edge cases
jurij-jukic Oct 20, 2025
fcd6279
Merge branch 'develop' into hf/ui-path
nick1udwig Oct 22, 2025
aeda01d
Merge pull request #42 from hyperware-ai/hf/ui-path
nick1udwig Oct 22, 2025
07e1008
Merge branch 'develop' into j/spawn-join
nick1udwig Oct 22, 2025
a8bd240
fix indentation
jurij-jukic Oct 24, 2025
824d0d9
point to latest rev on develop
jurij-jukic Oct 24, 2025
c7d68f0
Merge pull request #51 from hyperware-ai/j/spawn-join
jurij-jukic Oct 24, 2025
c8d4b5b
cargo.lock update
jurij-jukic Oct 30, 2025
db96962
Merge branch 'develop' into j/prevent-crashing
jurij-jukic Oct 30, 2025
3f21349
Merge pull request #47 from hyperware-ai/j/prevent-crashing
jurij-jukic Oct 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
/target/
**/target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

Expand Down
Loading