Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
217 changes: 13 additions & 204 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@
resolver = "2"
members = [
"src/uactor",
"experiments/actix-mpv",
"experiments/tokio_play",
"experiments/toactor_play",
]

[workspace.dependencies]
tokio = { version = "1.35.0", features = ["net", "sync", "time", "rt", "macros", "rt-multi-thread"] }
futures = "0.3"

# errors
thiserror = "1.0"
thiserror = "2"
anyhow = { version = "1.0", features = ["backtrace"] }

# tracing
Expand All @@ -26,4 +23,4 @@ strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"

derive_more = { version = "1", features = ["full"] }
derive-new = "0.6.0"
derive-new = "0.7"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ Examples can be found [here](src/uactor/examples).
9. Implemented support for actors for which it is necessary to work with multiple message sources (channels) [Example: Multi channel](src/uactor/examples/multiple_incoming_channels.rs)
10. Implemented shared state for actors [Example: Shared state](src/uactor/examples/shared_state.rs)

### Actor lifecycle
![Lifecycle.png](docs/assets/Lifecycle.png)

### Other projects:
1. Actix
2. Ractor
Expand Down
Binary file added docs/assets/Lifecycle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 0 additions & 9 deletions experiments/actix-mpv/Cargo.toml

This file was deleted.

Loading
Loading