-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 896 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
32
33
34
[package]
name = "tyra"
version = "1.0.0"
authors = ["sers.dev <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sers-dev/tyra"
homepage = "https://github.com/sers-dev/tyra"
documentation = "https://docs.rs/tyra"
description = "Typed Actor System"
keywords = ["typed", "actor", "scaling", "concurrency", "tyra"]
categories = ["network-programming", "asynchronous", "concurrency"]
exclude = ["/.github", ".gitignore"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "tyra"
path = "src/lib.rs"
[dependencies]
config = "0.13.2"
hostname = "0.3.1"
num_cpus = "1.13.1"
threadpool = "1.8.1"
crossbeam-channel = "0.5.6"
flume = "0.10.14"
dashmap = "5.4.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
log = "0.4"
[dev-dependencies]
bincode = "1.3.3"
ntest = "0.8.1"