simple-actors/Cargo.toml
Blake Rain 999a5e95db
All checks were successful
Check / check (push) Successful in 46s
fix: relaxed the tokio version dependency
2024-04-06 12:19:15 +01:00

19 lines
470 B
TOML

[package]
name = "simple-actors"
version = "0.2.0"
description = "Simple actor system based on Tokio"
authors = ["Blake Rain <blake.rain@blakerain.com>"]
edition = "2021"
[dependencies]
async-trait = { version = "0.1" }
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"] }