-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
58 lines (52 loc) · 1.68 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
[workspace]
members = [
"kic",
"kic-discover",
"instrument-repl",
]
resolver = "2"
[workspace.package]
version = "0.16.1"
authors = ["Keithley Instruments, LLC"]
edition = "2021"
repository = "https://github.com/tektronix/tsp-toolkit-kic-cli"
#TODO Minimum Supported Rust Version Reasoning:
# * Optional dependencies in feature flags was introduced in 1.60
[workspace.dependencies]
anyhow = "1.0.81"
bytes = "1.5.0"
clap = { version = "4.5.3", features = ["derive", "cargo", "string"] }
colored = "2.1.0"
exitcode = "1.1.2"
instrument-repl = { path = "instrument-repl" }
jsonrpsee = { version = "0.22.3", features = [
"tokio",
"tracing",
"server",
] }
local-ip-address = "0.6.1"
mdns = { git = "https://github.com/jaime-sense/mdns", rev = "498cf7cceaf7e2683a2e352b7e8a15dfc1c29037" } # until https://github.com/dylanmckay/mdns/pull/27 is closed
minidom = "0.15.2"
mockall = { version = "0.12.1", features = ["nightly"] }
phf = { version = "0.11.2", features = ["macros"] }
regex = "1.10.3"
reqwest = "0.12.0"
rpassword = "7.3.1"
rusb = "0.9.3"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
thiserror = "1.0.58"
tmc = { git = "https://github.com/esarver/rusb-usbtmc" }
tracing = { version = "0.1.40", features = ["async-await"] }
tracing-subscriber = "0.3.18"
tsp-toolkit-kic-lib = { git = "https://github.com/tektronix/tsp-toolkit-kic-lib.git", tag = "v0.16.1-0" }
[workspace.lints.rust]
warnings = "deny"
[workspace.lints.clippy]
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
undocumented_unsafe_blocks = "deny"
arithmetic_side_effects = "deny"
[workspace.lints.rustdoc]
all = "warn"
missing_doc_code_examples = "warn"