-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (43 loc) · 1.21 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
[package]
name = "panduza-platform-connectors"
version = "0.1.0"
edition = "2021"
[dependencies]
# Main async framework for the platform
tokio = { version = "1", features = ["full", "tracing"] }
#
tokio-serial = "5.4.1"
# Json serialization & deserialization
serde_json = "1.0.114"
#
nusb = "0.1.9"
#
usbtmc-message = { git = "https://github.com/Panduza/pza-rust-usbtmc-message", tag = "0.0.0" }
#
futures-lite = "2.3.0"
#
lazy_static = "1.4.0"
serial-line-ip = "0.5.0"
thiserror = "1.0.0"
#
# To manage serial communication
# Better than 'tokio-serial' in particular on Windows
#
serial2-tokio = "0.1.13"
# Trace instrumentation at disabled levels will be skipped and will not even be present
# in the resulting binary unless the verbosity level is specified dynamically.
# This level is configured separately for release and debug builds.
tracing = { version = "0.1", features = [
# "max_level_off",
# "max_level_error",
# "max_level_warn",
# "max_level_info",
"max_level_debug",
# "max_level_trace",
# "release_max_level_off",
# "release_max_level_error",
# "release_max_level_warn",
"release_max_level_info",
# "release_max_level_debug",
# "release_max_level_trace"
] }