vex_mqtt_rust/Cargo.toml

27 lines
561 B
TOML

2024-01-15 11:42:12 -07:00
[package]
name = "vex_mqtt_rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
protoc = "2.28.0"
prost-build = "0.12.3"
[dependencies]
2024-01-21 00:19:44 -07:00
backtrace-on-stack-overflow = "0.3.0"
2024-01-18 17:38:27 -07:00
bytes = "1.5.0"
2024-01-22 19:36:47 -07:00
dotenv = "0.15.0"
env_logger = "0.11.0"
2024-01-21 00:19:44 -07:00
log = "0.4.20"
openssl = "0.10.63"
2024-01-15 11:42:12 -07:00
prost = "0.12.3"
prost-types = "0.12.3"
2024-01-20 23:28:58 -07:00
rand = "0.8.5"
rand_core = "0.6.4"
2024-01-15 11:42:12 -07:00
rumqttc = "0.23.0"
serde = { version = "1.0.195", features = ["derive"]}
serde_json = "1.0.111"
2024-01-20 17:54:59 -07:00
sha2 = "0.10.8"