-
Notifications
You must be signed in to change notification settings - Fork 80
/
Cargo.toml
82 lines (69 loc) · 2.35 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
74
75
76
77
78
79
80
81
82
[workspace]
members = [
"rocketmq",
"rocketmq-broker",
"rocketmq-cli",
"rocketmq-client",
"rocketmq-common",
"rocketmq-example",
"rocketmq-filter",
"rocketmq-macros",
"rocketmq-namesrv",
"rocketmq-remoting",
"rocketmq-runtime",
"rocketmq-store"]
resolver = "2"
[workspace.package]
version = "0.3.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
"""
[workspace.dependencies]
rocketmq-common = { version = "0.3.0", path = "./rocketmq-common" }
rocketmq-runtime = { version = "0.3.0", path = "./rocketmq-runtime" }
rocketmq-macros = { version = "0.3.0", path = "./rocketmq-macros" }
rocketmq-rust = { version = "0.3.0", path = "./rocketmq" }
rocketmq-filter = { version = "0.3.0", path = "./rocketmq-filter" }
rocketmq-store = { version = "0.3.0", path = "./rocketmq-store", default-features = true }
rocketmq-remoting = { version = "0.3.0", path = "./rocketmq-remoting" }
rocketmq-cli = { version = "0.3.0", path = "./rocketmq-cli" }
rocketmq-namesrv = { version = "0.3.0", path = "./rocketmq-namesrv" }
rocketmq-broker = { version = "0.3.0", path = "./rocketmq-broker" }
rocketmq-client = { version = "0.3.0", path = "./rocketmq-client" }
tokio = { version = "1.41", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["full"] }
tokio-stream = { version = "0.1.16", features = ["full"] }
log = "0.4.22"
env_logger = "0.11.5"
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1.0.68"
#serde
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json_any_key = "2.0.0"
anyhow = "1.0"
bytes = "1.8.0"
rand = "0.8"
lazy_static = "1.5.0"
num_cpus = "1.16"
config = "0.14"
parking_lot = "0.12"
dirs = "5.0"
trait-variant = "0.1.2"
once_cell = "1.20.2"
mockall = "0.13.0"
cfg-if = "1.0.0"
sysinfo = "0.32.0"
uuid = { version = "1.11.0", features = ["v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", ] }
futures = "0.3"