forked from astarte-platform/astarte-message-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (49 loc) · 1.51 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
# This file is part of Astarte.
#
# Copyright 2022 SECO Mind Srl
#
# SPDX-License-Identifier: CC0-1.0
[package]
name = "astarte-message-hub"
version = "0.6.0-dev"
categories = ["network-programming"]
documentation = "https://docs.rs/astarte-message-hub"
edition = "2021"
homepage = "https://astarte.cloud/"
keywords = ["sdk", "iot", "astarte"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/astarte-platform/astarte-message-hub"
rust-version = "1.72.0"
description = "A central service that runs on (Linux) devices for collecting and delivering messages from N apps using 1 MQTT connection to Astarte"
[dependencies]
astarte-device-sdk = { version = "0.7.1", features = ["derive", "message-hub"] }
astarte-message-hub-proto = "0.6.1"
async-trait = "0.1.77"
axum = "0.7.4"
chrono = "0.4.33"
clap = { version = "3.2.25", features = ["derive"] }
displaydoc = "0.2.4"
env_logger = "0.10.2"
eyre = "0.6.12"
log = "0.4.20"
pbjson-types = "0.6.0"
prost = "0.12.3"
serde = "1.0.195"
serde_json = "1.0"
stable-eyre = "0.2.2"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "sync", "macros", "signal"] }
tokio-stream = { version = "0.1.14", features = ["net"] }
tokio-util = "0.7.10"
toml = "0.5.9"
tonic = "0.10.2"
uuid = "1.7.0"
zbus = { version = "3.14.1", default-features = false, features = ["tokio"] }
[dev-dependencies]
mockall = "0.12.1"
reqwest = { version = "0.11.23", features = ["json"] }
serial_test = "3.0.0"
tempfile = "3.8.1"
[build-dependencies]
tonic-build = "0.10.2"