-
Notifications
You must be signed in to change notification settings - Fork 220
[actor] Introduce Actor SDK #3077
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
clabby
wants to merge
21
commits into
main
Choose a base branch
from
cl/actor
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
2a00567
[actor] Introduce Actor SDK
clabby 4ea8a65
refactor
clabby f0af97b
concurrent reads
clabby e4851d7
publish crates
clabby 0794287
fence safety tests
clabby f92c6a4
simplify
clabby 35acb34
@andresilva review
clabby 93a9fc2
Batchable lanes
clabby 19b5a39
throughput benchmarks
clabby 05dd180
patbot nits
clabby c08e3e7
initial nits
clabby ec883d5
race against timeout in `ask_timeout`
clabby 7ec8876
AGENTS.md
clabby 46d8b55
remove `crate-type`
clabby 2bf06c0
nits
clabby 7ff6ed4
add on_external_priority ahead of lanes
clabby 1fd378a
lint
clabby e069743
panic on missing `on_read_write` / `on_read_only` callback
clabby c1b0ec7
edgecases
clabby a61dbf6
expansion docs
clabby d27bb8d
:broom:
clabby File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| [package] | ||
| name = "commonware-actor" | ||
| edition.workspace = true | ||
| publish = true | ||
| version.workspace = true | ||
| license.workspace = true | ||
| description = "Coordinate actors with messages of varying priority." | ||
| readme = "README.md" | ||
| homepage.workspace = true | ||
| repository = "https://github.com/commonwarexyz/monorepo/tree/main/actor" | ||
| documentation = "https://docs.rs/commonware-actor" | ||
|
|
||
| [lints] | ||
| workspace = true | ||
|
|
||
| [dependencies] | ||
| commonware-actor-macros.workspace = true | ||
| commonware-macros = { workspace = true, features = ["std"] } | ||
| commonware-runtime.workspace = true | ||
| commonware-utils = { workspace = true, features = ["std"] } | ||
| futures.workspace = true | ||
| thiserror.workspace = true | ||
| tracing.workspace = true | ||
|
|
||
| [lib] | ||
| bench = false | ||
|
|
||
| [dev-dependencies] | ||
| criterion = { workspace = true, features = ["async"] } | ||
| rand.workspace = true | ||
|
|
||
| [[bench]] | ||
| name = "actor" | ||
| harness = false | ||
| path = "src/benches/bench.rs" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.