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
4 changes: 2 additions & 2 deletions crackers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ thiserror = "2.0"
tracing = "0.1"
colored = "3.0"
tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter"] }
toml_edit = { version = "0.22", optional = true, features = ["serde"] }
toml_edit = { version = "0.23.5", optional = true, features = ["serde"] }
object = "0.37.2"
clap = { version = "4.0", optional = true , features = ["derive"]}
rand = "0.8"
rand = "0.9.2"
derive_builder = "0.20"
anyhow = { version = "1.0", optional = true }
tracing-indicatif = { version = "0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crackers/src/gadget/library/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use jingle::sleigh::{ArchInfoProvider, Instruction, SleighArchInfo, SpaceInfo, V
use jingle::{JingleContext, JingleError};
use rand::SeedableRng;
use rand::rngs::StdRng;
use rand::seq::SliceRandom;
use rand::seq::IndexedRandom;
use tracing::{Level, event};

use crate::gadget::Gadget;
Expand Down
Loading