forked from ch32-rs/wlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (36 loc) · 1011 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 = "wlink"
version = "0.0.9"
edition = "2021"
authors = ["Andelf <[email protected]>"]
repository = "https://github.com/ch32-rs/wlink"
documentation = "https://docs.rs/wlink"
homepage = "https://github.com/ch32-rs/wlink"
categories = ["embedded", "hardware-support", "development-tools::debugging"]
description = "WCH-Link flash tool for WCH's RISC-V MCUs(CH32V, CH56X, CH57X, CH58X, CH59X, CH32L103, CH32X035, CH641, CH643)"
keywords = ["embedded", "WCH", "CH32V", "WCH-Link"]
readme = "README.md"
license = "MIT/Apache-2.0"
[features]
default = []
[dependencies]
anyhow = "1"
bitfield = "0.14.0"
clap = { version = "4", features = ["derive"] }
hex = "0.4.3"
ihex = "3.0.0"
log = "0.4.20"
nu-pretty-hex = "0.91.0"
rusb = "0.9.1"
simplelog = "0.12.0"
thiserror = "1.0.38"
object = { version = "0.34.0", default-features = false, features = [
"elf",
"read_core",
"std",
] }
indicatif = "0.17.7"
serialport = "4.3.0"
libloading = "0.8.1"
chrono = "0.4.31"
clap-verbosity-flag = "2.2.0"