simple-actors/Cargo.toml
Blake Rain a197655365
Some checks failed
Check / check (push) Failing after 23s
feat: better actor construction
2024-05-13 12:47:06 +01:00

19 lines
458 B
TOML

[package]
name = "simple-actors"
version = "0.4.0"
description = "Simple actor system based on Tokio"
authors = ["Blake Rain <blake.rain@blakerain.com>"]
edition = "2021"
rust-version = "1.75"
[dependencies]
futures = { version = "0.3" }
thiserror = { version = "1.0" }
tracing = { version = "0.1" }
tokio = { version = "1.0", features = ["full"] }
[dev-dependencies]
env_logger = { version = "0.11" }
test-log = { version = "0.2", features = ["trace"] }