-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
31 lines (27 loc) · 874 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "acto"
version = "0.7.1"
authors = ["Roland Kuhn <[email protected]>"]
edition = "2021"
description = "light-weight Actor library for Rust"
repository = "https://github.com/rkuhn/acto"
documentation = "https://docs.rs/acto"
license = "Apache-2.0 OR MIT"
keywords = ["actors", "concurrency"]
categories = ["concurrency"]
[dependencies]
parking_lot = "0.12.1"
pin-project-lite = "0.2.9"
smol_str = { version = "0.1.23", default-features = false }
tokio = { version = "1.21", features = [
"rt-multi-thread",
"sync",
], optional = true }
tracing = { version = "0.1.37", default-features = false }
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "time", "sync"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
[build-dependencies]
rustc_version = "0.4.0"
[package.metadata.docs.rs]
all-features = true