lpc55prog/Cargo.toml

31 lines
772 B
TOML
Raw Permalink Normal View History

[package]
name = "lpc55prog"
version = "0.1.0"
edition = "2021"
description = "A flash programmer for NXP LP55xx microcontrollers' ISP boot rom"
authors = ["Keenan Tims <ktims@gotroot.ca>"]
[profile.release]
strip="debuginfo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
bitflags = "1.3.2"
byteorder = "1.5.0"
clap = { version = "4.4.6", features = ["derive"] }
clap-num = "1.0.2"
console = "0.15.7"
env_logger = "0.10.0"
hidapi = "2.1.3"
ihex = "3.0.0"
indicatif = "0.17.7"
log = "0.4.20"
nom = "7.1.3"
num_enum = "0.5.11"
object = { version = "0.32.1", default-features = false, features = ["elf", "write_std", "read_core"] }
strum = "0.24.1"
strum_macros = "0.24.3"
uuid = "1.4.1"