-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.35 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (48 loc) · 1.35 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.2.1"
edition = "2021"
rust-version = "1.88"
license = "Apache-2.0"
repository = "https://github.com/TrekMax/rtcom"
authors = ["TrekMax"]
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serialport = "4"
tokio-serial = "5.4"
tokio-util = { version = "0.7", features = ["rt"] }
nix = { version = "0.29", default-features = false, features = ["signal"] }
tempfile = "3"
assert_cmd = "2"
predicates = "3"
clap = { version = "4.5", features = ["derive", "env"] }
crossterm = { version = "0.28", features = ["event-stream"] }
ratatui = "0.30"
vt100 = "0.16"
tui-term = "0.3"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
thiserror = "1"
directories = "5"
insta = "1"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bytes = "1"
futures = "0.3"
rtcom-core = { path = "crates/rtcom-core", version = "0.2.1" }
rtcom-config = { path = "crates/rtcom-config", version = "0.2.1" }
rtcom-tui = { path = "crates/rtcom-tui", version = "0.2.1" }
[workspace.lints.rust]
unsafe_code = "deny"
missing_docs = "warn"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true