aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2025-07-09 21:08:09 +0100
committerTomasz Kramkowski <tomasz@kramkow.ski>2025-07-09 21:08:09 +0100
commit238bd1f811e8e1285b12fb11554a5ab7890452d4 (patch)
tree5f101d854ec8408f040b0c0f721023fc7ba27ee2 /Cargo.toml
parentdf7ebe827895e46caf15bc5739bcb6fba5d706f5 (diff)
downloadmqttr-238bd1f811e8e1285b12fb11554a5ab7890452d4.tar.gz
mqttr-238bd1f811e8e1285b12fb11554a5ab7890452d4.tar.xz
mqttr-238bd1f811e8e1285b12fb11554a5ab7890452d4.zip
Use moro local to reduce allocations
This means that we can also use Rc instead of Arc (which should have been used instead of re-allocating in the first place).
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b56366e..a5db89e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,6 +8,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.98"
+moro-local = { git = "https://github.com/EliteTK/moro-local.git", branch = "dependency-reduction" }
rumqttc = "0.24.0"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.45.1", features = ["rt", "macros", "process", "time"] }