1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "gdbstub" 15version = "0.6.4" 16authors = ["Daniel Prilik <danielprilik@gmail.com>"] 17exclude = [ 18 "examples/**/*.elf", 19 "examples/**/*.o", 20] 21description = "An implementation of the GDB Remote Serial Protocol in Rust" 22homepage = "https://github.com/daniel5151/gdbstub" 23documentation = "https://docs.rs/gdbstub" 24readme = "README.md" 25keywords = [ 26 "gdb", 27 "emulation", 28 "no_std", 29 "debugging", 30] 31categories = [ 32 "development-tools::debugging", 33 "embedded", 34 "emulators", 35 "network-programming", 36 "no-std", 37] 38license = "MIT OR Apache-2.0" 39repository = "https://github.com/daniel5151/gdbstub" 40 41[[example]] 42name = "armv4t" 43required-features = ["std"] 44 45[[example]] 46name = "armv4t_multicore" 47required-features = ["std"] 48 49[dependencies.bitflags] 50version = "1.3" 51 52[dependencies.cfg-if] 53version = "1.0" 54 55[dependencies.log] 56version = "0.4" 57 58[dependencies.managed] 59version = "0.8" 60default-features = false 61 62[dependencies.num-traits] 63version = "0.2" 64default-features = false 65 66[dependencies.paste] 67version = "1.0" 68 69[dev-dependencies.armv4t_emu] 70version = "0.1" 71 72[dev-dependencies.goblin] 73version = "0.4" 74 75[dev-dependencies.pretty_env_logger] 76version = "0.4" 77 78[features] 79__dead_code_marker = [] 80alloc = ["managed/alloc"] 81default = [ 82 "std", 83 "trace-pkt", 84] 85paranoid_unsafe = [] 86std = ["alloc"] 87trace-pkt = ["alloc"] 88