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.
|
|
|
[package]
|
|
|
|
name = "wchisp"
|
|
|
|
version = "0.1.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"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["vendored-libusb"]
|
|
|
|
|
|
|
|
vendored-libusb = ["rusb/vendored"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rand = "0.8"
|
|
|
|
log = "0.4.8"
|
|
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8.11"
|
|
|
|
clap = { version = "3.1", features = ["derive"] }
|
|
|
|
anyhow = "1.0"
|
|
|
|
rusb = { version = "0.9.1" }
|
|
|
|
bitfield = "0.13.2"
|
|
|
|
scroll = "0.11"
|
|
|
|
simplelog = "0.12"
|
|
|
|
hex = "0.4"
|
|
|
|
ihex = "3"
|
|
|
|
object = { version = "0.28.3", default-features = false, features = [
|
|
|
|
"elf",
|
|
|
|
"read_core",
|
|
|
|
"std",
|
|
|
|
] }
|