forked from mxsm/rocketmq-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (57 loc) · 1.85 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
[workspace]
members = [
"rocketmq",
"rocketmq-broker",
"rocketmq-cli",
"rocketmq-common",
"rocketmq-filter",
"rocketmq-macros",
"rocketmq-namesrv",
"rocketmq-remoting", "rocketmq-runtime",
"rocketmq-store"]
resolver = "2"
[workspace.package]
version = "0.3.0"
authors = ["mxsm <[email protected]>"]
edition = "2021"
homepage = "https://github.com/mxsm/rocketmq-rust"
repository = "https://github.com/mxsm/rocketmq-rust"
license = "MIT OR Apache-2.0"
keywords = ["rocketmq", "rust", "mq"]
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" }
tokio = { version = "1.35", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["full"] }
tokio-stream = { version = "0.1.14", features = ["full"] }
log = "0.4.0"
env_logger = "0.11.2"
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1.0.51"
#serde
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
bytes = "1.5.0"
rand = "0.8.5"
lazy_static = "1.4.0"
num_cpus = "1.16"
config = "0.14"
parking_lot = "0.12"
dirs = "5.0"
trait-variant = "0.1.2"
once_cell = "1.19.0"
mockall = "0.12.1"