Update gdbstub crate to version 0.1.2 and run cargo-update
Former-commit-id: 2db24a3f835b817519cc544d722c58437e98011f
This commit is contained in:
parent
fb93ebb4ed
commit
ff95b67ae1
864
Cargo.lock
generated
864
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -36,11 +36,18 @@ arrayvec = "0.5.1"
|
||||||
|
|
||||||
rustyline = {version = "6.0.0", optional = true}
|
rustyline = {version = "6.0.0", optional = true}
|
||||||
nom = {version = "5.0.0", optional = true}
|
nom = {version = "5.0.0", optional = true}
|
||||||
gdbstub = {git = "https://github.com/daniel5151/gdbstub.git", optional = true, features = ["std"], rev = "9686df6d74c4bf45cbc5746273b82640e8852b6d"}
|
gdbstub = { version = "0.1.2", optional = true, features = ["std"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bit = "^0.1"
|
bit = "^0.1"
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
criterion = "0.3"
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
name = "performance"
|
||||||
|
harness = false
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["arm7tdmi_dispatch_table"]
|
default = ["arm7tdmi_dispatch_table"]
|
||||||
debugger = ["nom", "rustyline"]
|
debugger = ["nom", "rustyline"]
|
||||||
|
|
Reference in a new issue