mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
feat: bump non breaking deps
Some checks are pending
Audit / audit (push) Waiting to run
CI / ci (macos-latest) (push) Waiting to run
CI / ci (ubuntu-latest) (push) Waiting to run
Rust / fmt (push) Waiting to run
Rust / test (macos-latest) (push) Waiting to run
Rust / test (ubuntu-latest) (push) Waiting to run
Rust / typo (push) Waiting to run
Rust / clippy (ubuntu-latest) (push) Waiting to run
Rust / check (macos-latest) (push) Waiting to run
Rust / check (ubuntu-latest) (push) Waiting to run
Rust / doc (macos-latest) (push) Waiting to run
Rust / doc (ubuntu-latest) (push) Waiting to run
Typo / typo (push) Waiting to run
Rust / clippy (macos-latest) (push) Waiting to run
Some checks are pending
Audit / audit (push) Waiting to run
CI / ci (macos-latest) (push) Waiting to run
CI / ci (ubuntu-latest) (push) Waiting to run
Rust / fmt (push) Waiting to run
Rust / test (macos-latest) (push) Waiting to run
Rust / test (ubuntu-latest) (push) Waiting to run
Rust / typo (push) Waiting to run
Rust / clippy (ubuntu-latest) (push) Waiting to run
Rust / check (macos-latest) (push) Waiting to run
Rust / check (ubuntu-latest) (push) Waiting to run
Rust / doc (macos-latest) (push) Waiting to run
Rust / doc (ubuntu-latest) (push) Waiting to run
Typo / typo (push) Waiting to run
Rust / clippy (macos-latest) (push) Waiting to run
This commit is contained in:
parent
b3c0e6e12c
commit
9186977c50
3 changed files with 683 additions and 537 deletions
1188
Cargo.lock
generated
1188
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
30
Cargo.toml
30
Cargo.toml
|
@ -32,7 +32,7 @@ distro = []
|
||||||
clap = {version="4.5", features=["cargo", "derive"]}
|
clap = {version="4.5", features=["cargo", "derive"]}
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.86"
|
||||||
benri = "0.1.12"
|
benri = "0.1.12"
|
||||||
bytes = "1.6.0"
|
bytes = "1.6.1"
|
||||||
dirs = "5.0.1"
|
dirs = "5.0.1"
|
||||||
#--------------------------------------------------------------------------------
|
#--------------------------------------------------------------------------------
|
||||||
egui = "0.27.2"
|
egui = "0.27.2"
|
||||||
|
@ -48,28 +48,28 @@ egui_extras = { version = "0.27.2", features = ["image"] }
|
||||||
## Using [wgpu] actually crashes macOS (fixed in 0.20.x though).
|
## Using [wgpu] actually crashes macOS (fixed in 0.20.x though).
|
||||||
|
|
||||||
#--------------------------------------------------------------------------------
|
#--------------------------------------------------------------------------------
|
||||||
env_logger = "0.11.3"
|
env_logger = "0.11.4"
|
||||||
figment = { version = "0.10.19", features = ["toml"] }
|
figment = { version = "0.10.19", features = ["toml"] }
|
||||||
reqwest = {version = "0.12.4", default-features=false, features=["json", "rustls-tls"]}
|
reqwest = {version = "0.12.5", default-features=false, features=["json", "rustls-tls"]}
|
||||||
image = { version = "0.25.1", features = ["png"] }
|
image = { version = "0.25.2", features = ["png"] }
|
||||||
log = "0.4.21"
|
log = "0.4.22"
|
||||||
num-format = { version = "0.4.4", default-features = false }
|
num-format = { version = "0.4.4", default-features = false }
|
||||||
once_cell = "1.19.0"
|
once_cell = "1.19.0"
|
||||||
portable-pty = "0.8.1"
|
portable-pty = "0.8.1"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
regex = { version = "1.10.4", default-features = false, features = ["perf"] }
|
regex = { version = "1.10.5", default-features = false, features = ["perf"] }
|
||||||
rfd = "0.14.1"
|
rfd = "0.14.1"
|
||||||
serde = { version = "1.0.202", features = ["rc", "derive"] }
|
serde = { version = "1.0.204", features = ["rc", "derive"] }
|
||||||
serde_json = "1.0.117"
|
serde_json = "1.0.120"
|
||||||
sysinfo = { version = "0.30.12", default-features = false }
|
sysinfo = { version = "0.30.13", default-features = false }
|
||||||
# tls-api = "0.9.0"
|
# tls-api = "0.9.0"
|
||||||
tokio = { version = "1.37.0", features = ["rt", "time", "macros", "process", "rt-multi-thread"] }
|
tokio = { version = "1.39.1", features = ["rt", "time", "macros", "process", "rt-multi-thread"] }
|
||||||
toml = { version = "0.8.13", features = ["preserve_order"] }
|
toml = { version = "0.8.15", features = ["preserve_order"] }
|
||||||
walkdir = "2.5.0"
|
walkdir = "2.5.0"
|
||||||
zeroize = "1.7.0"
|
zeroize = "1.8.1"
|
||||||
strsim = "0.11.1"
|
strsim = "0.11.1"
|
||||||
strip-ansi-escapes = "0.2.0"
|
strip-ansi-escapes = "0.2.0"
|
||||||
derive_more = {version="0.99.17", default-features=false, features=["display"]}
|
derive_more = {version="0.99.18", default-features=false, features=["display"]}
|
||||||
serde-this-or-that = "0.4.2"
|
serde-this-or-that = "0.4.2"
|
||||||
readable = "0.16"
|
readable = "0.16"
|
||||||
chrono = {version="0.4.38", default-features=false, features=["clock", "std"]}
|
chrono = {version="0.4.38", default-features=false, features=["clock", "std"]}
|
||||||
|
@ -80,7 +80,7 @@ flexi_logger = "0.28"
|
||||||
# Unix dependencies
|
# Unix dependencies
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
eframe = { version = "0.27.2", features = ["wgpu"] }
|
eframe = { version = "0.27.2", features = ["wgpu"] }
|
||||||
tar = "0.4.40"
|
tar = "0.4.41"
|
||||||
flate2 = "1.0"
|
flate2 = "1.0"
|
||||||
sudo = "0.6.0"
|
sudo = "0.6.0"
|
||||||
# macOS
|
# macOS
|
||||||
|
@ -111,7 +111,7 @@ eframe = { version = "0.27.2", features = ["wgpu"] }
|
||||||
# need the same version that eframe is using with egui_wgpu
|
# need the same version that eframe is using with egui_wgpu
|
||||||
# feature angle to enable support for old cpu on Windows
|
# feature angle to enable support for old cpu on Windows
|
||||||
wgpu = {version = "0.19.4", features=["angle"]}
|
wgpu = {version = "0.19.4", features=["angle"]}
|
||||||
zip = "1.3.0"
|
zip = "2.1.5"
|
||||||
is_elevated = "0.1.2"
|
is_elevated = "0.1.2"
|
||||||
|
|
||||||
# For Windows build (icon)
|
# For Windows build (icon)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "nightly-2024-04-08"
|
channel = "nightly-2024-07-24"
|
||||||
components = [ "rustfmt", "rustc-dev", "cargo", "clippy", "rust-analyzer"]
|
components = [ "rustfmt", "rustc-dev", "cargo", "clippy", "rust-analyzer"]
|
||||||
target = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin","x86_64-pc-windows-gnu"]
|
target = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin","x86_64-pc-windows-gnu"]
|
||||||
|
|
Loading…
Reference in a new issue