mirror of https://github.com/encounter/objdiff.git
Upgrade all dependencies
This commit is contained in:
parent
cd01b6254c
commit
4b58f69461
File diff suppressed because it is too large
Load Diff
28
Cargo.toml
28
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "objdiff"
|
name = "objdiff"
|
||||||
version = "0.2.3"
|
version = "0.3.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.65"
|
rust-version = "1.65"
|
||||||
authors = ["Luke Street <luke@street.dev>"]
|
authors = ["Luke Street <luke@street.dev>"]
|
||||||
|
@ -17,39 +17,39 @@ lto = "thin"
|
||||||
strip = "debuginfo"
|
strip = "debuginfo"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.66"
|
anyhow = "1.0.68"
|
||||||
bytes = "1.3.0"
|
bytes = "1.3.0"
|
||||||
cfg-if = "1.0.0"
|
cfg-if = "1.0.0"
|
||||||
const_format = "0.2.30"
|
const_format = "0.2.30"
|
||||||
cwdemangle = { git = "https://github.com/encounter/cwdemangle", rev = "286f3d1d29ee2457db89043782725631845c3e4c" }
|
cwdemangle = "0.1.4"
|
||||||
eframe = { version = "0.19.0", features = ["persistence"] } # , "wgpu"
|
eframe = { version = "0.20.1", features = ["persistence"] } # , "wgpu"
|
||||||
egui = "0.19.0"
|
egui = "0.20.1"
|
||||||
egui_extras = "0.19.0"
|
egui_extras = "0.20.0"
|
||||||
flagset = "0.4.3"
|
flagset = "0.4.3"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
memmap2 = "0.5.8"
|
memmap2 = "0.5.8"
|
||||||
notify = "5.0.0"
|
notify = "5.0.0"
|
||||||
object = { version = "0.30.0", features = ["read_core", "std", "elf"], default-features = false }
|
object = { version = "0.30.2", features = ["read_core", "std", "elf"], default-features = false }
|
||||||
png = "0.17.7"
|
png = "0.17.7"
|
||||||
ppc750cl = { git = "https://github.com/encounter/ppc750cl", rev = "aa631a33de7882c679afca89350898b87cb3ba3f" }
|
ppc750cl = { git = "https://github.com/terorie/ppc750cl", rev = "9ae36eef34aa6d74e00972c7671f547a2acfd0aa" }
|
||||||
rabbitizer = { git = "https://github.com/encounter/rabbitizer-rs", rev = "10c279b2ef251c62885b1dcdcfe740b0db8e9956" }
|
rabbitizer = { git = "https://github.com/encounter/rabbitizer-rs", rev = "10c279b2ef251c62885b1dcdcfe740b0db8e9956" }
|
||||||
rfd = { version = "0.10.0" } #, default-features = false, features = ['xdg-portal']
|
rfd = { version = "0.10.0" } #, default-features = false, features = ['xdg-portal']
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
tempfile = "3.3.0"
|
tempfile = "3.3.0"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.38"
|
||||||
time = { version = "0.3.17", features = ["formatting", "local-offset"] }
|
time = { version = "0.3.17", features = ["formatting", "local-offset"] }
|
||||||
toml = "0.5.9"
|
toml = "0.5.11"
|
||||||
twox-hash = "1.6.3"
|
twox-hash = "1.6.3"
|
||||||
byteorder = "1.4.3"
|
byteorder = "1.4.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.13", default-features = false, features = ["blocking", "json", "rustls"] }
|
reqwest = { version = "0.11.14", default-features = false, features = ["blocking", "json", "rustls"] }
|
||||||
self_update = { version = "0.34.0", default-features = false, features = ["rustls"] }
|
self_update = { version = "0.34.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.13"
|
reqwest = "0.11.14"
|
||||||
self_update = "0.34.0"
|
self_update = "0.34.0"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
|
@ -72,5 +72,5 @@ console_error_panic_hook = "0.1.7"
|
||||||
tracing-wasm = "0.2"
|
tracing-wasm = "0.2"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
anyhow = "1.0.66"
|
anyhow = "1.0.68"
|
||||||
vergen = { version = "7.4.3", features = ["build", "cargo", "git"], default-features = false }
|
vergen = { version = "7.5.0", features = ["build", "cargo", "git"], default-features = false }
|
||||||
|
|
|
@ -81,6 +81,8 @@ allow = [
|
||||||
"Unicode-DFS-2016",
|
"Unicode-DFS-2016",
|
||||||
"Zlib",
|
"Zlib",
|
||||||
"0BSD",
|
"0BSD",
|
||||||
|
"OFL-1.1",
|
||||||
|
"LicenseRef-UFL-1.0",
|
||||||
]
|
]
|
||||||
# List of explictly disallowed licenses
|
# List of explictly disallowed licenses
|
||||||
# See https://spdx.org/licenses/ for list of possible licenses
|
# See https://spdx.org/licenses/ for list of possible licenses
|
||||||
|
|
Loading…
Reference in New Issue