[package] name = "wchisp" version = "0.1.4" edition = "2021" authors = ["Andelf "] 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.8" serde = { version = "1.0.104", features = ["derive"] } serde_yaml = "0.9" clap = { version = "3", features = ["derive"] } anyhow = "1.0" rusb = { version = "0.9.1" } bitfield = "0.14" scroll = "0.11" simplelog = "0.12" hex = "0.4" ihex = "3" hxdmp = "0.2" object = { version = "0.29", default-features = false, features = [ "elf", "read_core", "std", ] }