Skip to content

Commit

Permalink
Merge pull request #59 from 00xc/build/deps
Browse files Browse the repository at this point in the history
Improve build and update dependencies
  • Loading branch information
joergroedel committed Jul 4, 2023
2 parents 0b6d081 + 3b5dd6e commit 9a389c9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 24 deletions.
30 changes: 10 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ doctest = false

[dependencies]
bitflags = "1.3.2"
gdbstub = { version = "0.6.6", default-features = false }
gdbstub_arch = "0.2.4"
gdbstub = { version = "0.6.6", default-features = false, optional = true }
gdbstub_arch = { version = "0.2.4", optional = true }
log = { version = "0.4.17", features = ["max_level_info", "release_max_level_info"] }
packit = { git = "https://github.com/coconut-svsm/packit", version = "0.1.0" }

[build-dependencies]
cc = "1.0.46"

[features]
default = ["enable-stacktrace"]
enable-stacktrace = []
enable-gdb = []
enable-gdb = ["dep:gdbstub", "dep:gdbstub_arch"]

0 comments on commit 9a389c9

Please sign in to comment.