1[package] 2name = "gdbstub" 3description = "An implementation of the GDB Remote Serial Protocol in Rust" 4authors = ["Daniel Prilik <danielprilik@gmail.com>"] 5version = "0.5.0" 6license = "MIT" 7edition = "2018" 8readme = "README.md" 9documentation = "https://docs.rs/gdbstub" 10homepage = "https://github.com/daniel5151/gdbstub" 11repository = "https://github.com/daniel5151/gdbstub" 12keywords = ["gdb", "emulation", "no_std", "debugging"] 13categories = ["development-tools::debugging", "embedded", "emulators", "network-programming", "no-std"] 14exclude = ["examples/**/*.elf", "examples/**/*.o"] 15 16[dependencies] 17cfg-if = "0.1.10" 18log = "0.4" 19managed = { version = "0.8", default-features = false } 20num-traits = { version = "0.2", default-features = false } 21paste = "1.0" 22 23[dev-dependencies] 24gdbstub_arch = { path = "./gdbstub_arch/" } 25 26armv4t_emu = "0.1" 27pretty_env_logger = "0.4" 28goblin = "0.2" 29 30[features] 31default = ["std"] 32alloc = ["managed/alloc"] 33std = ["alloc"] 34 35# INTERNAL: enables the `__dead_code_marker!` macro. 36# used as part of the `scripts/test_dead_code_elim.sh` 37__dead_code_marker = [] 38 39[[example]] 40name = "armv4t" 41required-features = ["std"] 42 43[[example]] 44name = "armv4t_multicore" 45required-features = ["std"] 46 47[workspace] 48members = ["gdbstub_arch"] 49exclude = ["example_no_std"] 50