-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (36 loc) · 1.05 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
[package]
name = "tsp-toolkit-kic-lib"
description = "A library specifically enabling communication to the Keithley product-line of instruments"
version = "0.18.3"
authors = ["Keithley Instruments, LLC"]
edition = "2021"
repository = "https://github.com/tektronix/tsp-toolkit-kic-lib"
[dependencies]
bytes = "1"
phf = { version = "0.11", features = ["macros"] }
rpassword = "7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tracing = { version = "0.1", features = ["async-await"] }
chrono = "0.4"
minidom = "0.15"
reqwest = { version = "0.12", features = ["blocking"] }
visa-rs = { version = "0.6.2", optional = true }
[features]
visa = ["dep:visa-rs"]
[dev-dependencies]
anyhow = "1"
bytes = "1"
colored = "2"
mockall = { version = "0.12", features = ["nightly"] }
[lints.rust]
warnings = "deny"
[lints.clippy]
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
undocumented_unsafe_blocks = "deny"
arithmetic_side_effects = "deny"
[lints.rustdoc]
all = "warn"
missing_doc_code_examples = "warn"