-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 983 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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "serial-unit-testing"
description = "Serial unit testing program and library"
version = "0.2.4"
authors = ["MarkAtk"]
edition = "2018"
license = "MIT"
repository = "https://github.com/markatk/serial-unit-testing"
readme = "README.md"
keywords = ["serial", "test", "unit"]
categories = ["command-line-utilities", "development-tools", "parsing"]
[features]
default = ["sut", "colored-tests"]
sut = ["clap", "tui", "crossterm", "colored"]
colored-tests = ["colored"]
[badges]
travis-ci = { repository = "markatk/serial-unit-testing" }
[lib]
name = "serial_unit_testing"
path = "src/lib.rs"
[[bin]]
name = "sut"
path = "src/main.rs"
required-features = ["sut"]
[dependencies]
serialport = "3.3.0"
regex = "1.5.5"
clap = { version = "2.33.0", optional = true }
colored = { version = "1.9.2", optional = true }
crossterm = { version = "0.17.5", optional = true }
[dependencies.tui]
version = "0.9.5"
optional = true
default-features = false
features = ['crossterm']