-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
44 lines (38 loc) · 1.14 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
[package]
name = "rabbitmq-stream-client"
version = "0.7.0"
authors = ["wolf4ood <[email protected]>", "korsmakolnikov <[email protected]>", "gsantomaggio <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MPL-2.0"
description = "A Rust client for RabbitMQ Stream"
repository = "https://github.com/rabbitmq/rabbitmq-stream-rust-client"
keywords = ["AMQP", "IoT", "messaging", "streams"]
categories = ["network-programming"]
readme = "README.md"
[workspace]
members = [
".",
"protocol",
"benchmark"
]
[dependencies]
tokio-rustls = {version="0.24.1", features=["dangerous_configuration"]}
rustls-pemfile = "1.0.4"
rabbitmq-stream-protocol = { version = "0.7", path = "protocol" }
tokio = { version = "1.29.1", features = ["full"] }
tokio-util = { version = "0.7.3", features = ["codec"] }
bytes = "1.0.0"
pin-project = { version = "1.0.0" }
tokio-stream = "0.1.11"
futures = "0.3.0"
url = "2.2.2"
tracing = "0.1"
thiserror = "2.0"
async-trait = "0.1.51"
rand = "0.8"
dashmap = "6.1.0"
murmur3 = "0.5.2"
[dev-dependencies]
tracing-subscriber = "0.3.1"
fake = { version = "3.0.0", features = ['derive'] }
chrono = "0.4.26"