-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 878 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 878 Bytes
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
[package]
name = "dwfv"
version = "0.5.0"
description = "A simple digital waveform viewer with vi-like key bindings"
authors = ["Pierre Surply <pierre.surply@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/psurply/dwfv"
edition = "2024"
keywords = ["eda", "vcd"]
categories = [
"command-line-utilities",
"development-tools::debugging",
"embedded",
"parsing",
"visualization"
]
exclude = [
"examples"
]
[badges]
travis-ci = { repository = "psurply/dwfv" }
[features]
default = ["cli"]
cli = ["gumdrop", "tui", "termion"]
[dependencies]
nom = { version = "8", default-features = false, features = ["std"] }
# For feature `cli`
gumdrop = { version = "0.8", optional = true }
tui = { version = "0.19", optional = true, default-features = false, features = ["termion"] }
termion = { version = "4.0", optional = true }