-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (46 loc) · 1.2 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
[package]
name = "scope-monitor"
description = "A multi-platform serial monitor with user-extensible features"
authors = ["Matheus T. dos Santos <[email protected]>"]
version = "0.2.1"
edition = "2021"
rust-version = "1.79.0"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/matheuswhite/scope-rs"
homepage = "https://github.com/matheuswhite/scope-rs"
keywords = ["serial", "monitor", "windows", "linux", "plugin"]
exclude = [
"/imgs/",
"/videos/",
"/assets/",
"/.git/",
"/.github/",
"/.venv/",
"/.gitignore",
"/cmd.yaml",
"/CONTRIBUTING.md",
'/.idea/',
]
[badges]
maintenance = { status = 'actively-developed' }
[[bin]]
name = "scope"
path = "src/main.rs"
[dependencies]
serialport = "4.4.0"
ratatui = "0.26.1"
crossterm = { version = "0.27.0", features = ["default", "event-stream"] }
futures = "0.3.30"
chrono = "0.4.23"
serde = "1.0"
serde_yaml = "0.9"
rand = "0.8.5"
clap = { version = "4.1.9", features = ["derive"] }
mlua = { version = "0.9.6", features = ["lua54", "vendored", "async", "send"] }
anyhow = "1.0.79"
homedir = "0.2.1"
tokio = { version = "1.36.0", features = ["full"] }
regex = "1.10.5"
[target.'cfg(windows)'.dependencies]
ctrlc = "3.4.3"