-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.9 KB
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
[package]
name = "streameroo"
version = "0.4.4"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/lur1an/streameroo"
keywords = ["amqp", "amqprs", "rabbitmq"]
description = "Compilation of mini-frameworks & utilities for data-streaming applications"
[dependencies]
fnv = "1.0.7"
uuid = { version = "1.11.0", features = ["v4"] }
bytes = { version = "1.8.0", optional = true }
rmp-serde = { version = "1.3.0", optional = true }
serde = { version = "1.0.213", optional = true }
serde_json = { version = "1.0.132", optional = true }
tokio = { version = "1.40.0", features = ["full", "rt"], optional = true }
thiserror = "2.0.3"
tracing = "0.1.41"
tokio-stream = "0.1.16"
bson = { version = "2.13.0", optional = true }
amqprs = { version = "2.1.1", features = ["urispec"]}
opentelemetry = { version = "0.31", features = [ "trace", ], default-features = false, optional = true }
testcontainers-modules = { version = "0.12.1", features = ["rabbitmq"], optional = true }
test-context = { version = "0.3.0", optional = true }
tracing-opentelemetry-instrumentation-sdk = { version = "0.32.3", optional = true }
tracing-opentelemetry = { version = "0.32.1", optional = true }
[profile.release]
panic = "abort"
[features]
default = ["tokio", "json"]
tokio = ["dep:tokio"]
msgpack = ["serde", "rmp-serde"]
json = ["serde", "serde_json"]
bson = ["dep:bson"]
bytes = ["dep:bytes"]
amqp-test = ["dep:testcontainers-modules", "dep:test-context"]
telemetry = [
"dep:opentelemetry",
"dep:tracing-opentelemetry-instrumentation-sdk",
"dep:tracing-opentelemetry"
]
[dev-dependencies]
anyhow = "1.0.91"
nix = { version = "0.29.0", features = ["process", "signal"] }
test-context = "0.3.0"
testcontainers-modules = { version = "0.12.1", features = ["rabbitmq"] }
tracing-subscriber = "0.3.19"
init-tracing-opentelemetry = { version = "0.32.0", features = ["opentelemetry-otlp", "otlp", "tonic", "tracer", "tracing_subscriber_ext"] }