probe-rs 0.13.0

A collection of on chip debugging tools to communicate with microchips.
Documentation
[package]
name = "probe-rs"
version = "0.13.0"
authors = [
    "Noah Hüsser <yatekii@yatekii.ch>",
    "Dominik Boehi <dominik.boehi@gmail.ch>",
]
edition = "2021"
description = "A collection of on chip debugging tools to communicate with microchips."
documentation = "https://docs.rs/probe-rs/"
homepage = "https://github.com/probe-rs/probe-rs"
repository = "https://github.com/probe-rs/probe-rs"
readme = "../README.md"
categories = ["embedded", "hardware-support", "development-tools::debugging"]
keywords = ["embedded"]
license = "MIT OR Apache-2.0"

[features]
default = ["builtin-targets", "vendored-libusb"]

vendored-libusb = ["rusb/vendored"]

# Enable all built in targets.
builtin-targets = []

ftdi = ["libftdi1-sys"]
ftdi-vendored = ["libftdi1-sys/vendored", "libftdi1-sys/libusb1-sys"]

[dependencies]
anyhow = "1.0.31"
base64 = "0.13.0"
bincode = "1.3.2"
bitfield = "0.14.0"
bitvec = "1.0"
enum-primitive-derive = "0.2.1"
gimli = { version = "0.26.1", default-features = false, features = [
    "endian-reader",
    "read",
    "std",
] }
hidapi = { version = "1.2.0", default-features = false, features = [
    "linux-static-hidraw",
] }
ihex = "3.0.0"
jaylink = "0.3.0"
jep106 = "0.2.6"
once_cell = "1.7.2"
log = "0.4.8"
num-traits = "0.2.11"
object = { version = "0.29.0", default-features = false, features = [
    "elf",
    "read_core",
    "std",
] }
rusb = "0.9.0"
scroll = "0.11.0"
serde = { version = "1.0.104", features = ["derive"] }
serde_yaml = "0.8.11"
static_assertions = "1.1.0"
svg = "0.10.0"
thiserror = "1.0.10"

# optional
hexdump = { version = "0.1.0", optional = true }
libftdi1-sys = { version = "1.1.2", optional = true }

# path
probe-rs-target = { path = "../probe-rs-target", version = "0.13.0", features = [
    "bincode",
] }

[build-dependencies]
bincode = "1.3.2"
probe-rs-target = { path = "../probe-rs-target", version = "0.13.0", features = [
    "bincode",
] }
serde_yaml = "0.8.11"

[dev-dependencies]
chrono = "0.4.19"
pretty_env_logger = "0.4.0"
rand = "0.8.0"
reqwest = { version = "0.11.0", features = ["blocking", "json"] }
serde_json = "1.0.47"
serde = "1.0.118"
clap = { version = "3.0", features = ["derive"] }
itm-decode = { version = "0.6.1", default-features = false }