Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellocordeiro committed Jan 1, 2024
1 parent 2ac5897 commit 6a1507f
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 26 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion core/gb-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ thiserror = "1.0.53"
image = { version = "0.24.7", default-features = false, features = ["png"] }
num = { version = "0.4.1", default-features = false }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde_json = "1.0.109"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
3 changes: 2 additions & 1 deletion core/gb-core/tests/cgb_acid2.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#![cfg(feature = "cgb")]

mod common;
use common::{runners::run_until_break, validators::validate_screenshot};
use gb_core::GameBoy;

mod common;

#[test]
fn test_cgb_acid2() {
let name = "cgb-acid2";
Expand Down
3 changes: 2 additions & 1 deletion core/gb-core/tests/dmg_acid2.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
mod common;
use common::{runners::run_until_break, validators::validate_screenshot};
use gb_core::GameBoy;

mod common;

#[cfg(not(feature = "cgb"))]
#[test]
fn test_dmg_acid2_dmg() {
Expand Down
3 changes: 2 additions & 1 deletion core/gb-core/tests/mooneye.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
mod common;
use common::{runners::run_until_break, validators::validate_fibonacci};
use gb_core::GameBoy;

mod common;

// Acceptance
testcases_mooneye! {
// add_sp_e_timing("acceptance/add_sp_e_timing.gb");
Expand Down
2 changes: 1 addition & 1 deletion core/gb-opcode-info/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ workspace = true

[dependencies]
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde_json = "1.0.109"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 comments on commit 6a1507f

Please sign in to comment.