forked from mxsm/rocketmq-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (75 loc) · 2.53 KB
/
Cargo.toml
File metadata and controls
90 lines (75 loc) · 2.53 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
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
82
83
84
85
86
87
88
89
90
[workspace]
members = [
"rocketmq",
"rocketmq-broker",
"rocketmq-cli",
"rocketmq-client",
"rocketmq-common",
"rocketmq-error",
"rocketmq-example",
"rocketmq-filter",
"rocketmq-macros",
"rocketmq-namesrv",
"rocketmq-remoting",
"rocketmq-runtime",
"rocketmq-store",
"rocketmq-tools",
"rocketmq-tui"]
resolver = "2"
[workspace.package]
version = "0.6.0"
authors = ["mxsm <mxsm@apache.org>"]
edition = "2021"
homepage = "https://github.com/mxsm/rocketmq-rust"
repository = "https://github.com/mxsm/rocketmq-rust"
license = "MIT OR Apache-2.0"
keywords = ["apache-rocketmq", "rocketmq-rust", "rocketmq-rs", "rust", "rocketmq-client"]
categories = ["asynchronous", "network-programming", "message-queue", "rocketmq"]
readme = "README.md"
description = """
Unofficial Rust implementation of Apache RocketMQ
"""
rust-version = "1.85.0"
[workspace.dependencies]
rocketmq-common = { version = "0.6.0", path = "./rocketmq-common" }
rocketmq-runtime = { version = "0.6.0", path = "./rocketmq-runtime" }
rocketmq-macros = { version = "0.6.0", path = "./rocketmq-macros" }
rocketmq-rust = { version = "0.6.0", path = "./rocketmq" }
rocketmq-filter = { version = "0.6.0", path = "./rocketmq-filter" }
rocketmq-store = { version = "0.6.0", path = "./rocketmq-store", default-features = true }
rocketmq-remoting = { version = "0.6.0", path = "./rocketmq-remoting" }
rocketmq-client-rust = { version = "0.6.0", path = "./rocketmq-client" }
rocketmq-tools = { version = "0.6.0", path = "./rocketmq-tools" }
rocketmq-error = { version = "0.6.0", path = "./rocketmq-error" }
tokio = { version = "1.47", features = ["full"] }
tokio-util = { version = "0.7.16", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-appender = "0.2.3"
thiserror = "2.0.14"
#serde
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json_any_key = "2.0.0"
anyhow = "1.0.99"
bytes = "1.10.1"
rand = "0.9.2"
lazy_static = "1.5.0"
num_cpus = "1.17"
config = "0.15.14"
parking_lot = "0.12"
dirs = "5.0"
trait-variant = "0.1.2"
once_cell = "1.21.3"
mockall = "0.13.1"
cfg-if = "1.0.1"
sysinfo = "0.37.0"
uuid = { version = "1.18.0", features = ["v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", ] }
futures = "0.3"
cheetah-string = { version = "0.1.6", features = ["serde", "bytes"] }
flate2 = "1.1.2"
dashmap = "6.1.0"
strum = { version = "0.26.3", features = ["derive"] }