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.
44 lines
1.1 KiB
44 lines
1.1 KiB
[package]
|
|
name = "gdbstub"
|
|
description = "An implementation of the GDB Remote Serial Protocol in Rust"
|
|
authors = ["Daniel Prilik <danielprilik@gmail.com>"]
|
|
version = "0.4.5"
|
|
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"]
|
|
exclude = ["examples/**/*.elf", "examples/**/*.o"]
|
|
|
|
[dependencies]
|
|
cfg-if = "0.1.10"
|
|
log = "0.4"
|
|
managed = { version = "0.8", default-features = false }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
paste = "1.0"
|
|
|
|
[dev-dependencies]
|
|
armv4t_emu = "0.1"
|
|
pretty_env_logger = "0.4"
|
|
goblin = "0.2"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
alloc = ["managed/alloc"]
|
|
std = ["alloc"]
|
|
|
|
# INTERNAL: enables the `__dead_code_marker!` macro.
|
|
# used as part of the `scripts/test_dead_code_elim.sh`
|
|
__dead_code_marker = []
|
|
|
|
[[example]]
|
|
name = "armv4t"
|
|
required-features = ["std"]
|
|
|
|
[[example]]
|
|
name = "armv4t_multicore"
|
|
required-features = ["std"]
|