-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
29 lines (27 loc) · 1015 Bytes
/
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
[package]
name = "serial-monitor"
version = "0.0.7"
authors = ["Dave Hylands <[email protected]>"]
license = "MIT"
keywords = ["serial", "communications", "terminal"]
categories = ["command-line-utilities"]
description = "Cross platform command line serial terminal program."
homepage = "https://github.com/dhylands/serial-monitor"
documentation = "https://github.com/dhylands/serial-monitor#serial-monitor"
repository = "https://github.com/dhylands/serial-monitor"
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossterm = { version = "0.18", features = ["event-stream"] }
futures = { version = "0.3" }
futures-timer = "3.0"
mio-serial = "3.3.1"
serialport = "3.3.0"
structopt = "0.3"
tokio = { version = "1.16.1", features = ["full"] }
tokio-util = { version = "0.3.1", features = ["codec"] }
tokio-serial = "4.3.3"
wildmatch = "1.0.9"
bytes = "0.5.4"
strum = { version = "0.19.5", features = ["derive"] }