gdbstub 0.3.0

An implementation of the GDB Remote Serial Protocol in Rust
Documentation
[package]
name = "gdbstub"
description = "An implementation of the GDB Remote Serial Protocol in Rust"
authors = ["Daniel Prilik <danielprilik@gmail.com>"]
version = "0.3.0"
license = "MIT"
edition = "2018"
readme = "README.md"
documentation = "https://docs.rs/gdbstub"
homepage = "https://github.com/daniel5151/gdbstub"
repository  = "https://github.com/daniel5151/gdbstub"
keywords = ["gdb", "emulation", "no_std", "debugging"]
categories = ["development-tools::debugging", "embedded", "emulators", "network-programming", "no-std"]

[dependencies]
btoi = { version = "0.4", default-features = false }
cfg-if = "0.1"
log = "0.4"
managed = { version = "0.8", default-features = false }
num-traits = { version = "0.2", default-features = false }

[dev-dependencies]
armv4t_emu = "0.1"
pretty_env_logger = "0.4"
goblin = "0.2"

[features]
default = ["std"]
alloc = ["managed/alloc"]
std = ["alloc"]

[[example]]
name = "armv4t"
required-features = ["std"]

[[example]]
name = "armv4t_multicore"
required-features = ["std"]