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 believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "gdbstub"
16version = "0.4.5"
17authors = ["Daniel Prilik <danielprilik@gmail.com>"]
18exclude = ["examples/**/*.elf", "examples/**/*.o"]
19description = "An implementation of the GDB Remote Serial Protocol in Rust"
20homepage = "https://github.com/daniel5151/gdbstub"
21documentation = "https://docs.rs/gdbstub"
22readme = "README.md"
23keywords = ["gdb", "emulation", "no_std", "debugging"]
24categories = ["development-tools::debugging", "embedded", "emulators", "network-programming", "no-std"]
25license = "MIT"
26repository = "https://github.com/daniel5151/gdbstub"
27
28[[example]]
29name = "armv4t"
30required-features = ["std"]
31
32[[example]]
33name = "armv4t_multicore"
34required-features = ["std"]
35[dependencies.cfg-if]
36version = "0.1.10"
37
38[dependencies.log]
39version = "0.4"
40
41[dependencies.managed]
42version = "0.8"
43default-features = false
44
45[dependencies.num-traits]
46version = "0.2"
47default-features = false
48
49[dependencies.paste]
50version = "1.0"
51[dev-dependencies.armv4t_emu]
52version = "0.1"
53
54[dev-dependencies.goblin]
55version = "0.2"
56
57[dev-dependencies.pretty_env_logger]
58version = "0.4"
59
60[features]
61__dead_code_marker = []
62alloc = ["managed/alloc"]
63default = ["std"]
64std = ["alloc"]
65