-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
65 lines (55 loc) · 1.66 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "actix-telepathy"
version = "0.6.1"
authors = ["wenig <info@pwenig.de>"]
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/wenig/actix-telepathy/"
readme = "README.md"
description = "Cluster extension for the actix actor framework"
keywords = ["actor", "distributed", "decentralized", "network", "actix"]
categories = ["network-programming"]
[lib]
name = "actix_telepathy"
path = "src/lib.rs"
[workspace]
members = [
"./",
"actix-telepathy-derive"
]
[features]
default = ["derive"]
derive = ["actix_telepathy_derive"]
[dev-dependencies]
actix-rt = "2.9.0"
port_scanner = "0.1.5"
rayon = "1.5.0"
futures-sink = "0.3.21"
testing_logger = "0.1.1"
[dependencies]
actix_telepathy_derive = { version = "0.3.4", optional = true }
log = "0.4"
env_logger = "0.11"
byteorder = "1.3"
bytes = "1"
actix = "=0.13.5"
actix-broker = "0.4.3"
tokio = { version = "1.33", features = ["io-util", "sync"] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = { version = "0.1", features = ["net"]}
futures = "0.3"
rand = "0.8"
uuid = { version = "1.0", features = ["v4", "serde"] }
once_cell = "1.5.2"
parking_lot = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
flexbuffers = "2.0.0"
ndarray = { version = "0.15.4", optional = true, features = ["serde"]}
# dns resolver
trust-dns-proto = { version = "0.23.1", default-features = false, features = ["tokio-runtime"] }
trust-dns-resolver = { version = "0.23.1", default-features = false, features = ["tokio-runtime", "system-config"] }
derive_more = "0.99"
[patch.crates-io]
actix-telepathy = { path = "." }
actix_telepathy_derive = { path = "actix-telepathy-derive" }