diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-07-09 21:08:09 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-07-09 21:08:09 +0100 |
commit | 238bd1f811e8e1285b12fb11554a5ab7890452d4 (patch) | |
tree | 5f101d854ec8408f040b0c0f721023fc7ba27ee2 /Cargo.toml | |
parent | df7ebe827895e46caf15bc5739bcb6fba5d706f5 (diff) | |
download | mqttr-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.toml | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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"] } |