We have a basic ring buffer for dealing with concurrent message exchange. Currently in the middle of reifying the traits, types and structs needed for the `hello.rs` example of the simple `Hello, World!` greeter type actor.
11 lines
201 B
TOML
11 lines
201 B
TOML
[package]
|
|
name = "swactor"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
bytemuck = { version = "1.24.0", features = ["derive"] }
|
|
crossbeam-queue = "0.3.12"
|