forked from nats-io/nats.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (69 loc) · 1.82 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "nats"
version = "0.15.2"
description = "A Rust NATS client"
authors = ["Derek Collison <[email protected]>", "Tyler Neely <[email protected]>", "Stjepan Glavina <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
documentation = "https://docs.rs/nats"
homepage = "https://github.com/nats-io/nats.rs"
repository = "https://github.com/nats-io/nats.rs"
readme = "README.md"
keywords = ["nats", "client", "messaging", "api"]
categories = ["network-programming", "api-bindings"]
[features]
fault_injection = []
[badges]
maintenance = { status = "actively-developed" }
[profile.release]
debug = true
split-debuginfo = "unpacked"
[profile.dev]
panic = 'abort'
split-debuginfo = "unpacked"
[dependencies]
base64 = "0.13.0"
base64-url = "1.4.10"
blocking = "1.0.2"
crossbeam-channel = "0.5.1"
fastrand = "1.5.0"
itoa = "0.4.7"
json = "0.12.4"
log = "0.4.14"
nkeys = "0.1.0"
nuid = "0.3.0"
once_cell = "1.8.0"
parking_lot = "0.11.1"
regex = { version = "1.5.4", default-features = false, features = ["std", "unicode-perl"] }
rustls = "0.19.1"
rustls-native-certs = "0.5.0"
webpki = "0.21.0"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
chrono = { version = "0.4.19", features = ["serde"] }
memchr = "2.4.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.98"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winsock2"] }
[dev-dependencies]
criterion = "0.3.4"
env_logger = "0.9.0"
historian = "4.0.4"
lazy_static = "1.4.0"
nats_test_server = { path = "nats_test_server" }
quicli = "0.4.0"
smol = "1.2.5"
structopt = "0.3.21"
[[bench]]
name = "nats_bench"
harness = false
[[example]]
name = "nats-box"
path = "examples/nats-box/main.rs"
[[example]]
name = "serde-json"
path = "examples/serde-json/main.rs"
[[example]]
name = "async_nats_bench"
path = "examples/async_nats_bench.rs"