-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (58 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
69 lines (58 loc) · 1.51 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
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
[package]
name = "tekhsi_rs"
version = "0.0.0" # this will be set by Github actions from now on
edition = "2024"
description = "High-performance client for Tektronix TekHSI enabled oscilloscopes"
repository = "https://github.com/dnetguru/tekhsi_rs"
readme = "README.md"
license = "GPL-3.0-or-later"
[lib]
name = "tekhsi_rs"
crate-type = ["rlib"]
[dependencies]
tonic = "0.14.2"
prost = "0.14.1"
tonic-prost = "0.14.2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
num-complex = "0.4"
uuid = { version = "1", features = ["v4"] }
base64 = "0.22"
smol_str = "0.3.5"
zerocopy = { version = "0.8", features = ["derive"] }
kanal = "0.1"
rustfft = { version = "6", optional = true }
realfft = { version = "3.5", optional = true }
[features]
default = ["fft"]
client-id-header = []
fft = ["dep:rustfft", "dep:realfft"]
[build-dependencies]
tonic-prost-build = { version = "0.14.2", features = ["cleanup-markdown"], default-features = false }
[dev-dependencies]
matfile = "0.5"
proptest = "1.9.0"
[profile.release]
lto = "fat"
debug = false
rpath = false
opt-level = 3
panic = "abort"
strip = "symbols"
codegen-units = 1
[profile.profiling]
inherits = "release"
debug = true
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage,coverage_nightly)'] }
[workspace]
resolver = "2"
members = [
".",
"examples/scopeapp",
"bindings/python",
"bindings/node"
]