-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
38 lines (34 loc) · 936 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
[package]
name = "wishbone-tool"
version = "0.7.9"
authors = ["Sean Cross <[email protected]>"]
edition = "2018"
repository = "https://github.com/litex-hub/wishbone-utils"
keywords = [ "litex", "wishbone" ]
description = "A library and command line program to control a Wishbone bus of an embedded device"
license = "Apache-2.0"
readme = "README.md"
[badges]
travis-ci = { repository = "litex-hub/wishbone-utils", branch = "master" }
cirrus-ci = { repository = "litex-hub/wishbone-utils", branch = "master" }
[[bin]]
path = "crates/core/main.rs"
name = "wishbone-tool"
[workspace]
members = [
"crates/libusb-sys",
"crates/libusb-rs",
"crates/bridge",
]
[dependencies]
clap = "2"
bitflags = "1"
byteorder = "1"
terminal = "0.2.0"
rand = "0"
log = "0"
flexi_logger = { version = "0", features = ["colors"] }
wishbone-bridge = { path = "crates/bridge", version = "1" }
# Support reading csr.csv
csv = "1.1"
indicatif = "0.15.0"