Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/scans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

cargo audit

if ! cargo outdated --exit-code 1; then
if ! cargo outdated -R --exit-code 1; then
echo "❗ [T186] Out of date third party dependencies found"
exit 1
fi
Expand Down
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ crate-type = ["cdylib", "rlib"]
test = false

[dependencies]
anyhow = { version = "1.0.80" }
anyhow = { version = "1.0.86" }
libafl = { git = "https://github.com/AFLplusplus/LibAFL", rev = "0f26f6ea32aa74ee526636558842ec06bbfb49bb", default-features = false, features = [
"std",
"derive",
Expand All @@ -48,7 +48,7 @@ libafl_bolts = { git = "https://github.com/AFLplusplus/LibAFL", rev = "0f26f6ea3
libafl_targets = { git = "https://github.com/AFLplusplus/LibAFL", rev = "0f26f6ea32aa74ee526636558842ec06bbfb49bb", default-features = false, features = [
"std",
] }
yaxpeax-arch = { version = "0.2.7", default-features = false, features = [
yaxpeax-arch = { version = "0.2.8", default-features = false, features = [
"std",
"use-serde",
] }
Expand All @@ -57,20 +57,20 @@ yaxpeax-x86 = { version = "1.2.2", default-features = false, features = [
"use-serde",
"fmt",
] }
typed-builder = "0.18.1"
typed-builder = "0.18.2"
raw-cstr = "0.1.4"
goblin = "0.8.0"
goblin = "0.8.2"
yaxpeax-riscv = { git = "https://github.com/DrChat/yaxpeax-riscv", version = "0.1.0", features = [
"serde",
], rev = "0e2151b" }
crc32fast = "1.4.0"
crc32fast = "1.4.2"
simics = { path = "simics-rs/simics" }
indoc = "2.0.4"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
versions = { version = "6.1.0", features = ["serde"] }
indoc = "2.0.5"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
versions = { version = "6.2.0", features = ["serde"] }
ffi = "0.1.1"
num-traits = "0.2.18"
num-traits = "0.2.19"
num-derive = "0.4.2"
tracing-subscriber = "0.3.18"
tracing = { version = "0.1.40", features = ["log"] }
Expand All @@ -79,11 +79,11 @@ chrono = "0.4.38"

[dev-dependencies]
simics-test = { path = "simics-rs/simics-test" }
anyhow = "1.0.80"
anyhow = "1.0.86"
command-ext = "0.1.2"
indoc = "2.0.4"
indoc = "2.0.5"
ispm-wrapper = { path = "simics-rs/ispm-wrapper" }
versions = { version = "6.1.0", features = ["serde"] }
versions = { version = "6.2.0", features = ["serde"] }

[build-dependencies]
simics = { path = "simics-rs/simics" }
Expand Down
Binary file modified examples/manual-example/minimal_boot_disk.craff
Binary file not shown.
Binary file modified examples/rsrc/minimal_boot_disk.craff
Binary file not shown.
6 changes: 3 additions & 3 deletions simics-rs/cargo-simics-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ categories = [
[dependencies]
simics-sign = { version = "0.1.0", path = "../simics-sign" }

anyhow = "1.0.80"
anyhow = "1.0.86"
artifact-dependency = "0.1.7"
clap = { version = "4.5.1", features = ["derive"] }
clap = { version = "4.5.4", features = ["derive"] }
cargo-subcommand = { version = "0.12.0", features = ["clap"] }
command-ext = "0.1.2"
simics-package = { version = "0.1.0", path = "../simics-package" }
itertools = "0.13.0"
ispm-wrapper = { version = "0.1.0", path = "../ispm-wrapper" }
thiserror = "1.0.57"
thiserror = "1.0.61"
10 changes: 5 additions & 5 deletions simics-rs/ispm-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ categories = [


[dependencies]
anyhow = "1.0.80"
anyhow = "1.0.86"
command-ext = "0.1.2"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
typed-builder = "0.18.1"
versions = { version = "6.1.0", features = ["serde"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
typed-builder = "0.18.2"
versions = { version = "6.2.0", features = ["serde"] }
6 changes: 3 additions & 3 deletions simics-rs/simics-api-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ categories = [

[build-dependencies]
ispm-wrapper = { version = "0.1.0", path = "../ispm-wrapper" }
anyhow = "1.0.80"
anyhow = "1.0.86"
bindgen = "0.69.4"
scraper = "0.19.0"
walkdir = "2.4.0"
walkdir = "2.5.0"

[features]
default = ["link"]
Expand All @@ -38,5 +38,5 @@ default = ["link"]
link = []

[dev-dependencies]
anyhow = "1.0.80"
anyhow = "1.0.86"
raw-cstr = "0.1.4"
4 changes: 2 additions & 2 deletions simics-rs/simics-build-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ categories = [
[dependencies]
ispm-wrapper = { version = "0.1.0", path = "../ispm-wrapper" }
simics-api-sys = { version = "0.1.0", path = "../simics-api-sys" }
anyhow = "1.0.80"
versions = { version = "6.1.0", features = ["serde"] }
anyhow = "1.0.86"
versions = { version = "6.2.0", features = ["serde"] }
12 changes: 6 additions & 6 deletions simics-rs/simics-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ proc-macro = true
simics-api-sys = { version = "0.1.0", path = "../simics-api-sys" }
simics-sign = { version = "0.1.0", path = "../simics-sign" }
ispm-wrapper = { version = "0.1.0", path = "../ispm-wrapper" }
quote = "1.0.35"
syn = { version = "2.0.50", features = ["full"] }
proc-macro2 = "1.0.78"
darling = "0.20.8"
indoc = "2.0.4"
quote = "1.0.36"
syn = { version = "2.0.66", features = ["full"] }
proc-macro2 = "1.0.85"
darling = "0.20.9"
indoc = "2.0.5"
command-ext = "0.1.2"
chrono = "0.4.34"
chrono = "0.4.38"
16 changes: 8 additions & 8 deletions simics-rs/simics-package/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ artifact-dependency = "0.1.7"
cargo-subcommand = "0.12.0"
cargo_metadata = "0.18.1"
command-ext = "0.1.2"
flate2 = "1.0.28"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_yaml = "0.9.32"
flate2 = "1.0.30"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
serde_yaml = "0.9.34+deprecated"
tar = "0.4.40"
thiserror = "1.0.57"
typed-builder = "0.18.1"
walkdir = "2.4.0"
thiserror = "1.0.61"
typed-builder = "0.18.2"
walkdir = "2.5.0"

[target.'cfg(unix)'.dependencies]
libc = "0.2.153"
libc = "0.2.155"
6 changes: 3 additions & 3 deletions simics-rs/simics-sign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ categories = [
]

[dependencies]
object = "0.35.0"
chrono = "0.4.34"
thiserror = "1.0.57"
object = "0.36.0"
chrono = "0.4.38"
thiserror = "1.0.61"
10 changes: 5 additions & 5 deletions simics-rs/simics-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ categories = [
[dependencies]
ispm-wrapper = { version = "0.1.0", path = "../ispm-wrapper" }
cargo-simics-build = { version = "0.1.0", path = "../cargo-simics-build" }
anyhow = "1.0.80"
anyhow = "1.0.86"
cargo-subcommand = "0.12.0"
cargo_metadata = "0.18.1"
command-ext = "0.1.2"
getters2 = "0.1.4"
indoc = "2.0.4"
typed-builder = "0.18.1"
versions = { version = "6.1.0", features = ["serde"] }
walkdir = "2.4.0"
indoc = "2.0.5"
typed-builder = "0.18.2"
versions = { version = "6.2.0", features = ["serde"] }
walkdir = "2.5.0"
28 changes: 14 additions & 14 deletions simics-rs/simics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ categories = [
[dependencies]
simics-api-sys = { version = "0.1.0", path = "../simics-api-sys" }
simics-macro = { version = "0.1.0", path = "../simics-macro" }
anyhow = "1.0.80"
anyhow = "1.0.86"
raw-cstr = "0.1.4"
paste = "1.0.14"
regex = "1.10.3"
walkdir = "2.4.0"
thiserror = "1.0.57"
typed-builder = "0.18.1"
paste = "1.0.15"
regex = "1.10.4"
walkdir = "2.5.0"
thiserror = "1.0.61"
typed-builder = "0.18.2"
ordered-float = "4.2.0"
versions = { version = "6.1.0", features = ["serde"] }
versions = { version = "6.2.0", features = ["serde"] }

[features]
default = ["link", "global-allocator"]
Expand All @@ -46,10 +46,10 @@ global-allocator = []
simics-api-sys = { version = "0.1.0", path = "../simics-api-sys" }
simics-macro = { version = "0.1.0", path = "../simics-macro" }
simics-build-utils = { version = "0.1.0", path = "../simics-build-utils" }
anyhow = "1.0.80"
prettyplease = "0.2.16"
syn = "2.0.50"
versions = "6.1.0"
darling = "0.20.8"
proc-macro2 = "1.0.78"
quote = "1.0.35"
anyhow = "1.0.86"
prettyplease = "0.2.20"
syn = "2.0.66"
versions = "6.2.0"
darling = "0.20.9"
proc-macro2 = "1.0.85"
quote = "1.0.36"
Loading