forked from robustmq/robustmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
128 lines (119 loc) · 3.67 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Copyright 2023 RobustMQ Team
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[workspace]
members = [
"src/mqtt-bridge/kafka",
"src/mqtt-bridge/elasticsearch",
"src/mqtt-bridge/redis",
"src/mqtt-broker",
"src/mqtt-edge",
"src/amqp-plugins",
"src/amqp-broker",
"src/placement-center",
"src/cli-command",
"src/grpc-clients",
"src/cmd",
"src/common/base",
"src/common/rocksdb-engine",
"src/common/metadata-struct",
"src/common/third-driver",
"src/protocol",
"src/journal-server",
"src/journal-client",
"src/storage-adapter",
"tests",
]
resolver = "2"
[workspace.package]
version = "0.1.1"
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
signal-hook = "0.3.17"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.9", features = ["codec"] }
axum = { version = "0.7.2", features = ["ws"] }
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
prometheus = "0.13.3"
prometheus_exporter = "0.8"
lazy_static = "^1.4"
futures = "0.3"
thiserror = "1"
bytes = { version = "1", features = ["serde"] }
futures-util = "0.3.30"
rocksdb = "0.22.0"
tonic = "0.11.0"
tonic-build = "0.11.0"
bincode = "1.3.3"
prost = "0.12.3"
ahash = "0.8.7"
byteorder = "1.5.0"
toml = "0.8.8"
uuid = { version = "1.7.0", features = ["v4"] }
mobc = "0.8.3"
dashmap = { version = "6.0.1", features = ["serde"] }
snowflake = "1.3.0"
regex = "1.10.4"
rumqttc = "0.24.0"
axum-extra = { version = "0.9.3", features = ["typed-header"] }
rustls-pemfile = "2"
tokio-rustls = "0.26"
humantime-serde = "1.1.1"
mysql = "*"
paho-mqtt = { version = "0.12.5", default-features = false, features = [
"bundled",
"vendored-ssl",
] }
serde_yaml = "0.9"
log4rs = "1.2.0"
log = "0.4.0"
ipnet = "2.3.0"
os_info = "3.8.2"
openraft = { git = "https://github.com/databendlabs/openraft.git", features = [
"serde",
"type-alias",
"loosen-follower-log-revert",
] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
validator = { version = "0.18", features = ["derive"] }
rand = "0.8.5"
## workspaces members
mqtt-bridge-kafka = { path = "src/mqtt-bridge/kafka" }
mqtt-bridge-elasticsearch = { path = "src/mqtt-bridge/elasticsearch" }
mqtt-bridge-redis = { path = "src/mqtt-bridge/redis" }
mqtt-broker = { path = "src/mqtt-broker" }
mqtt-edge = { path = "src/mqtt-edge" }
amqp-broker = { path = "src/amqp-broker" }
amqp-plugins = { path = "src/amqp-plugins" }
placement-center = { path = "src/placement-center" }
cli-command = { path = "src/cli-command" }
grpc-clients = { path = "src/grpc-clients" }
journal-server = { path = "src/journal-server" }
journal-client = { path = "src/journal-client" }
storage-adapter = { path = "src/storage-adapter" }
cmd = { path = "src/cmd" }
common-base = { path = "src/common/base" }
rocksdb-engine = { path = "src/common/rocksdb-engine" }
metadata-struct = { path = "src/common/metadata-struct" }
third-driver = { path = "src/common/third-driver" }
protocol = { path = "src/protocol" }
robustmq-test = { path = "tests" }
[profile.dev]
overflow-checks = false
incremental = true
[profile.release]
overflow-checks = false