-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 1.12 KB
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
[package]
name = "bevy_mqtt"
description = "A robust, secure MQTT client plugin for Bevy game engine with comprehensive error handling and performance optimizations"
version = "0.9.0"
edition = "2024"
readme = "README.md"
repository = "https://github.com/foxzool/bevy_mqtt"
homepage = "https://github.com/foxzool/bevy_mqtt"
documentation = "https://docs.rs/bevy_mqtt"
authors = ["FoxZoOL <zhooul@gmail.com>"]
license = "MIT OR Apache-2.0"
categories = ["game-development", "network-programming"]
keywords = ["bevy", "mqtt", "ecs", "gamedev"]
[features]
websocket = ["rumqttc/websocket"]
proxy = ["rumqttc/proxy"]
native-tls = ["rumqttc/use-native-tls"]
rust-tls = ["rumqttc/use-rustls"]
[dependencies]
bevy_app = { version = "0.18" }
bevy_ecs = { version = "0.18" }
bevy_log = { version = "0.18" }
bevy_derive = { version = "0.18" }
bevy_reflect = { version = "0.18" }
rumqttc = { version = "0.25" }
flume = { version = "0.12" }
bytes = "1"
regex = { version = "1.12" }
[dev-dependencies]
bevy = { version = "0.18", default-features = false }
[[example]]
name = "pub_and_sub"
path = "examples/pub_and_sub.rs"
required-features = ["websocket"]