-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
55 lines (51 loc) · 1.02 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
[package]
authors = ["Mathieu Amiot <[email protected]>"]
categories = [
"network-programming",
"web-programming",
"database",
]
description = "Nitox is a `tokio`-based client for NATS."
documentation = "https://docs.rs/nitox"
homepage = "https://github.com/YellowInnovation/nitox"
include = [
"**/*.rs",
"Cargo.toml",
]
keywords = [
"nats",
"async",
"tokio",
]
license = "MIT/Apache-2.0"
name = "nitox"
readme = "README.md"
repository = "https://github.com/YellowInnovation/nitox"
version = "0.1.9"
[[bench]]
harness = false
name = "nitox_parser_benchmark"
[dependencies]
bytes = "0.4"
derive_builder = "0.7"
failure = "0.1"
failure_derive = "0.1"
futures = "0.1"
log = "0.4"
native-tls = "0.2"
parking_lot = "0.6"
rand = "0.5"
serde = "1.0"
serde_derive = "1.0"
tokio-codec = "0.1"
tokio-executor = "0.1"
tokio-tcp = "0.1"
tokio-tls = "0.2"
url = "1.7"
[dependencies.serde_json]
features = ["preserve_order"]
version = "1.0"
[dev-dependencies]
criterion = "0.2"
env_logger = "0.6"
tokio = "0.1"