-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (43 loc) · 1.34 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
[package]
name = "t2_bus"
version = "0.1.0"
authors = ["Felix Watts <[email protected]>"]
edition = "2018"
keywords = ["message bus", "pubsub", "pub sub", "interprocess", "request response", "microservice", "bus"]
license = "MIT"
description = "An inter- or intra-process message bus supporting publish/subscribe and request/response."
repository = "https://github.com/felixwatts/t2_bus"
readme = "README.md"
categories = ["asynchronous", "concurrency"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.64"
byteorder = "1.4.2"
log="0.4.14"
regex = "1.4.3"
lazy_static = "1.4.0"
futures-util="0.3.5"
tokio = { version = "1.40.0", features = ["full", "rt", "net"] } # TODO reduce features
serde = { version = "1.0", features = ["derive"] }
ciborium = "0.2.2"
serde_derive = "1.0.123"
tokio-util = { version = "0.6.3", features = ["codec"] }
bytes = "1.0.1"
futures-sink = "0.3.13"
futures-core="0.3.13"
futures="0.3.13"
ansi_term = "0.12.1"
flate2 = "1.0.20"
thiserror = "1.0.24"
tokio-rustls = { version = "0.26.0", optional = false }
rustls-pemfile = "2.1.2"
clap = { version = "4.5.9", features = ["derive"] }
# web_pki = "0.22.40"
hex = "0.4.3"
[dev-dependencies]
uuid = { version = "1.10.0", features = ["v4"] }
tempfile = "3.2.0"
# [features]
# tls = [
# "tokio-rustls"
# ]