-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 808 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
[package]
name = "akt"
version = "0.1.2"
authors = [
"Artyom Kozhemiakin <[email protected]>"
]
rust-version = "1.56"
edition = "2018"
license = "MIT"
description = """
An actors library for Rust and Tokio
designed to work with async / await message handlers out of the box.
"""
readme = "README.md"
repository = "https://github.com/akozhemiakin/akt"
homepage = "https://github.com/akozhemiakin/akt"
keywords = ["actor", "futures", "actix", "async", "tokio"]
categories = ["network-programming", "asynchronous"]
[dependencies]
tokio = { version = "1", features = ["sync", "rt", "macros", "time"] }
async-trait = "0.1.58"
error-stack = { version = "0.2.4", optional = true }
[dev-dependencies]
thiserror = "1.0.38"
tokio = { version = "1", features = ["sync", "rt", "macros", "time", "rt-multi-thread"] }