You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

[package]
name = "wchisp"
version = "0.2.2"
edition = "2021"
authors = ["Andelf <andelf@gmail.com>"]
repository = "https://github.com/ch32-rs/wchisp"
documentation = "https://docs.rs/wchisp/"
homepage = "https://github.com/ch32-rs/wchisp"
categories = ["embedded", "command-line-utilities", "command-line-utilities"]
description = "A command-line implementation of WCHISPTool, for flashing ch32 MCUs"
keywords = ["wch", "cli", "ch32", "embedded"]
readme = "README.md"
license = "GPL-2.0"
include = ["**/*.rs", "devices/**/*.yaml", "Cargo.toml", "LICENSE", "README.md"]
[features]
default = ["vendored-libusb"]
vendored-libusb = ["rusb/vendored"]
[dependencies]
rand = "0.8"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
clap = { version = "4", features = ["derive"] }
anyhow = "1.0"
rusb = { version = "0.9.2" }
bitfield = "0.14"
scroll = "0.11"
simplelog = "0.12"
hex = "0.4"
ihex = "3"
hxdmp = "0.2"
object = { version = "0.30", default-features = false, features = [
"elf",
"read_core",
"std",
] }
indicatif = "0.17"