-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 942 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 942 Bytes
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
32
33
34
35
36
[package]
name = "cooper"
version = "0.2.0"
authors = ["Frank Pagliughi <fpagliughi@mindspring.com>"]
repository = "https://github.com/fpagliughi/cooper-rs"
homepage = "https://github.com/fpagliughi/cooper-rs"
license = "MIT"
edition = "2021"
rust-version = "1.81"
readme = "README.md"
keywords = ["actors", "futures"]
categories = ["asynchronous", "concurrency"]
description = """
A simple, in-process, async Actor library for Rust.
"""
[features]
default = ["smol"]
smol = ["dep:smol"]
tokio = ["dep:tokio"]
[dependencies]
futures = "0.3"
async-channel = "2.3"
crossbeam-channel = "0.5"
smol = { version = "2.0", optional = true }
tokio = { version = "1", features = ["rt", "sync"], optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "macros"] }
reqwest = { version = "*", features = ["json"] }
serde_json = "1.0"
[[example]]
name = "tokio_runtime"
required-features = ["tokio"]