mirror of
https://github.com/encounter/objdiff.git
synced 2025-06-07 15:13:47 +00:00
Upgrade all dependencies (+ egui/eframe 0.25.0)
This commit is contained in:
parent
4cdad8a519
commit
405a2a82db
1280
Cargo.lock
generated
1280
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
42
Cargo.toml
42
Cargo.toml
@ -24,51 +24,51 @@ wgpu = ["eframe/wgpu"]
|
|||||||
wsl = []
|
wsl = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.79"
|
||||||
byteorder = "1.5.0"
|
byteorder = "1.5.0"
|
||||||
bytes = "1.5.0"
|
bytes = "1.5.0"
|
||||||
cfg-if = "1.0.0"
|
cfg-if = "1.0.0"
|
||||||
const_format = "0.2.32"
|
const_format = "0.2.32"
|
||||||
cwdemangle = "0.1.6"
|
cwdemangle = "0.1.6"
|
||||||
dirs = "5.0.1"
|
dirs = "5.0.1"
|
||||||
eframe = { version = "0.24.1", features = ["persistence"] }
|
eframe = { version = "0.25.0", features = ["persistence"] }
|
||||||
egui = "0.24.1"
|
egui = "0.25.0"
|
||||||
egui_extras = "0.24.1"
|
egui_extras = "0.25.0"
|
||||||
filetime = "0.2.22"
|
filetime = "0.2.23"
|
||||||
flagset = "0.4.4"
|
flagset = "0.4.4"
|
||||||
float-ord = "0.3.2"
|
float-ord = "0.3.2"
|
||||||
font-kit = "0.12.0"
|
font-kit = "0.12.0"
|
||||||
globset = { version = "0.4.14", features = ["serde1"] }
|
globset = { version = "0.4.14", features = ["serde1"] }
|
||||||
log = "0.4.20"
|
log = "0.4.20"
|
||||||
memmap2 = "0.9.0"
|
memmap2 = "0.9.3"
|
||||||
notify = "6.1.1"
|
notify = "6.1.1"
|
||||||
object = { version = "0.32.1", features = ["read_core", "std", "elf"], default-features = false }
|
object = { version = "0.32.2", features = ["read_core", "std", "elf"], default-features = false }
|
||||||
png = "0.17.10"
|
png = "0.17.11"
|
||||||
pollster = "0.3.0"
|
pollster = "0.3.0"
|
||||||
ppc750cl = { git = "https://github.com/encounter/ppc750cl", rev = "4a2bbbc6f84dcb76255ab6f3595a8d4a0ce96618" }
|
ppc750cl = { git = "https://github.com/encounter/ppc750cl", rev = "4a2bbbc6f84dcb76255ab6f3595a8d4a0ce96618" }
|
||||||
rabbitizer = "1.8.0"
|
rabbitizer = "1.8.1"
|
||||||
rfd = { version = "0.12.1" } #, default-features = false, features = ['xdg-portal']
|
rfd = { version = "0.13.0" } #, default-features = false, features = ['xdg-portal']
|
||||||
ron = "0.8.1"
|
ron = "0.8.1"
|
||||||
semver = "1.0.20"
|
semver = "1.0.21"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1.0.108"
|
serde_json = "1.0.111"
|
||||||
serde_yaml = "0.9.27"
|
serde_yaml = "0.9.30"
|
||||||
shell-escape = "0.1.5"
|
shell-escape = "0.1.5"
|
||||||
similar = "2.3.0"
|
similar = "2.4.0"
|
||||||
tempfile = "3.8.1"
|
tempfile = "3.9.0"
|
||||||
thiserror = "1.0.50"
|
thiserror = "1.0.56"
|
||||||
time = { version = "0.3.30", features = ["formatting", "local-offset"] }
|
time = { version = "0.3.31", features = ["formatting", "local-offset"] }
|
||||||
toml = "0.8.8"
|
toml = "0.8.8"
|
||||||
twox-hash = "1.6.3"
|
twox-hash = "1.6.3"
|
||||||
|
|
||||||
# For Linux static binaries, use rustls
|
# For Linux static binaries, use rustls
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
reqwest = { version = "0.11.22", default-features = false, features = ["blocking", "json", "rustls"] }
|
reqwest = { version = "0.11.23", default-features = false, features = ["blocking", "json", "rustls"] }
|
||||||
self_update = { version = "0.39.0", default-features = false, features = ["rustls"] }
|
self_update = { version = "0.39.0", default-features = false, features = ["rustls"] }
|
||||||
|
|
||||||
# For all other platforms, use native TLS
|
# For all other platforms, use native TLS
|
||||||
[target.'cfg(not(target_os = "linux"))'.dependencies]
|
[target.'cfg(not(target_os = "linux"))'.dependencies]
|
||||||
reqwest = "0.11.22"
|
reqwest = "0.11.23"
|
||||||
self_update = "0.39.0"
|
self_update = "0.39.0"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
@ -91,5 +91,5 @@ console_error_panic_hook = "0.1.7"
|
|||||||
tracing-wasm = "0.2"
|
tracing-wasm = "0.2"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.79"
|
||||||
vergen = { version = "8.2.6", features = ["build", "cargo", "git", "gitcl"] }
|
vergen = { version = "8.3.1", features = ["build", "cargo", "git", "gitcl"] }
|
||||||
|
@ -154,7 +154,8 @@ fn data_table_ui(
|
|||||||
let right_diffs = right_section.map(|section| split_diffs(§ion.data_diff));
|
let right_diffs = right_section.map(|section| split_diffs(§ion.data_diff));
|
||||||
|
|
||||||
table.body(|body| {
|
table.body(|body| {
|
||||||
body.rows(config.code_font.size, total_rows, |row_index, mut row| {
|
body.rows(config.code_font.size, total_rows, |mut row| {
|
||||||
|
let row_index = row.index();
|
||||||
let address = row_index * BYTES_PER_ROW;
|
let address = row_index * BYTES_PER_ROW;
|
||||||
row.col(|ui| {
|
row.col(|ui| {
|
||||||
if let Some(left_diffs) = &left_diffs {
|
if let Some(left_diffs) = &left_diffs {
|
||||||
|
@ -537,7 +537,8 @@ fn asm_table_ui(
|
|||||||
let right_symbol = right_obj.and_then(|obj| find_symbol(obj, selected_symbol));
|
let right_symbol = right_obj.and_then(|obj| find_symbol(obj, selected_symbol));
|
||||||
let instructions_len = left_symbol.or(right_symbol).map(|s| s.instructions.len())?;
|
let instructions_len = left_symbol.or(right_symbol).map(|s| s.instructions.len())?;
|
||||||
table.body(|body| {
|
table.body(|body| {
|
||||||
body.rows(appearance.code_font.size, instructions_len, |row_index, mut row| {
|
body.rows(appearance.code_font.size, instructions_len, |mut row| {
|
||||||
|
let row_index = row.index();
|
||||||
if let Some(symbol) = left_symbol {
|
if let Some(symbol) = left_symbol {
|
||||||
asm_col_ui(
|
asm_col_ui(
|
||||||
&mut row,
|
&mut row,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user