-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (65 loc) · 1.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "realtime_plot"
version = "0.3.0"
authors = ["Hao Hou <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Plotters Piston Window Backend"
homepage = "https://plotters-rs.github.io"
repository = "https://github.com/plotters-rs/plotters-piston.git"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
piston_window = "0.132.0"
# tokio = { version = "1.38", features = ["full", "tracing"] }
log = "0.4"
log4rs = { version = "1.3.0", features = ["toml", "json_encoder"] }
config = "0.14"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
tokio = { version = "1.40", features = ["full", "tracing"] }
chrono="0.4"
clap = { version="4.5", features = ["derive"] }
env_logger = "0.11"
flume = "0.11"
git-version = "0.3"
json5 = "0.4"
zenoh = "0.11.0"
zenoh-ext = "0.11.0"
zenoh-util="0.11.0"
[dependencies.plotters-backend]
version="0.3"
[dev-dependencies]
systemstat = "0.2.3"
rumqttc = "0.24.0"
rumqttd="0.19.0"
tmq = { version = "0.5.0" }
iceoryx2 ="0.4"
iceoryx2-bb-container ="0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
axum = { version="0.7", features = ["ws"] }
axum-extra = { version="0.9", features = ["typed-header"] }
futures = { version = "0.3", default-features = false, features = ["alloc"] }
[dev-dependencies.plotters]
default-features = false
features = ["ttf", "all_series"]
version="0.3"
[[example]]
name = "zmq_pub"
path = "examples/zeromq_tmq/publish.rs"
[[example]]
name = "ice_pub"
path = "examples/dds_iceoryx2/publisher.rs"
[[example]]
name = "ice_sub"
path = "examples/dds_iceoryx2/subscriber.rs"
[[example]]
name = "mqtt_async_pub"
path = "examples/mqtt/mqtt_async_pub.rs"
[[example]]
name = "mqtt_async_sub"
path = "examples/mqtt/mqtt_async_sub.rs"
[[example]]
name = "rumqttd"
path = "examples/mqtt/rumqttd.rs"