-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
73 lines (65 loc) · 1.92 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
[package]
name = "rabbitmq-stream-client"
version = "0.8.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"
[package.metadata."docs.rs"]
all-features = true
[workspace]
members = [
".",
"protocol",
"benchmark"
]
[dependencies]
tokio-rustls = { version = "0.26.1" }
rustls-pemfile = "2.2.0"
rabbitmq-stream-protocol = { version = "0.8", 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"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
tracing-subscriber = "0.3.1"
fake = { version = "4.2.0", features = ['derive'] }
chrono = "0.4.26"
serde_json = "1.0"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
[features]
default = []
serde = ["dep:serde"]
[[example]]
name="receive_super_stream"
path="examples/superstreams/receive_super_stream.rs"
[[example]]
name="send_super_stream_hash"
path="examples/superstreams/send_super_stream_hash.rs"
[[example]]
name="send_super_stream_routing_key"
path="examples/superstreams/send_super_stream_routing_key.rs"
[[example]]
name="send_super_stream"
path="examples/superstreams/send_super_stream.rs"
[[example]]
name="environment_deserialization"
path="examples/environment_deserialization.rs"
[[bin]]
name = "perf-producer"
path = "src/bin/perf-producer.rs"