-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
41 lines (37 loc) · 1.03 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
[package]
name = "wampire"
version = "0.2.1"
edition = "2018"
authors = ["Dudochkin Victor <dudochkin.victor@gmail.com>", "Daniel Yule <yule@cs.dal.ca>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ohyo-io/wampire"
documentation = "https://docs.rs/wampire"
homepage = "https://github.com/ohyo-io/wampire"
description = "A asynchronous WAMPv2 client and router implenting the basic WAMP profile"
keywords = ["rpc", "pubsub", "wamp", "wamp2", "microservices"]
categories = ["network-programming", "web-programming", "web-programming::websocket"]
[lib]
name = "wampire"
path = "src/lib.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.2"
log = "0.4"
env_logger = "0.9"
# ws = "0.9"
rmp = "0.8"
rmp-serde = "1.1"
rand = "0.8"
futures = "0.3"
itertools = "0.10"
argparse = "0.2.1"
intmap = "0.7.1"
parity-ws = "0.11"
[dev-dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
[features]
default = []
# ssl = ["ws/ssl"]
ssl = ["parity-ws/ssl"]