Skip to content

Commit

Permalink
Bump dependencies (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrarier2111 authored Mar 1, 2024
1 parent de42f43 commit a4e2639
Show file tree
Hide file tree
Showing 20 changed files with 1,749 additions and 1,176 deletions.
1,975 changes: 1,178 additions & 797 deletions Cargo.lock

Large diffs are not rendered by default.

59 changes: 31 additions & 28 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,42 +23,45 @@ split-debuginfo = "unpacked"
opt-level = 1

[dependencies]
winit = "0.27.0"
glow = "0.10.0"
byteorder = "1.4.3"
serde = { version = "1.0.127", features = ["derive"] }
serde_json = "1.0.66"
flate2 = { version = "1.0.20", features = ["rust_backend"], default-features = false }
zip = { version = "0.5.13", features = ["deflate"], default-features = false }
image = "0.23.14"
getrandom = { version = "0.2.3", features = ["js"] }
rand = "0.8.4"
rand_pcg = "0.3.1"
base64 = "0.13.0"
log = { version = "0.4.14", features = ["std"] }
cgmath = "0.17.0"
lazy_static = "1.4.0"
collision = "0.20.1"
rsa_public_encrypt_pkcs1 = "0.4.0"
structopt = "0.3.22"
copypasta = "0.7.1"
instant = "0.1.10"
dirs = "3.0.2"
winit = { version = "0.29", features = ["rwh_05"] }
raw-window-handle = "0.5.0"
glow = "0.13"
byteorder = "1.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
flate2 = { version = "1.0", features = ["rust_backend"], default-features = false }
zip = { version = "0.6", features = ["deflate"], default-features = false }
image = "0.24"
getrandom = { version = "0.2", features = ["js"] }
rand = "0.8"
rand_pcg = "0.3"
base64 = "0.21"
log = { version = "0.4", features = ["std"] }
cgmath = "0.17"
lazy_static = "1.4" # TODO: get rid of this and use OnceCell instead
collision = "0.20"
rsa_public_encrypt_pkcs1 = "0.4"
structopt = "0.3"
copypasta = "0.10"
instant = "0.1"
dirs = "5.0"

# Concurrency features
dashmap = "4.0.2"
parking_lot = "0.11.1"
dashmap = "5.5"
parking_lot = "0.12"
atomic_float = "0.1.0"
# arc-swap = "1.4.0" # TODO: Use this!
crossbeam-channel = "0.5.1" # check if flume would be better in terms of performance!
crossbeam-channel = "0.5" # check if flume would be better in terms of performance!
# flume = "0.10.8" # replaced by crossbeam channel
# tokio = { version = "0.2", features = ["full"] } # readd as soon as we want to impl this!
rayon = "1.5.1"
rfd = "0.5.0"
rayon = "1.5"
rfd = "0.14"
bevy_ecs = { git = "https://github.com/Lea-fish/bevy", rev = "a58b4936d0e1ccd241dca74bceae78a1b6d4f949" }

reqwest = { version = "0.11.4", features = [ "blocking" ]}
glutin = "0.29.0"
reqwest = { version = "0.11", features = [ "blocking" ]}
# glutin = "0.29"
glutin = "0.31"
glutin-winit = "0.4"

[dependencies.leafish_resources]
path = "./resources"
Expand Down
97 changes: 93 additions & 4 deletions blocks/Cargo.lock

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

8 changes: 4 additions & 4 deletions blocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ authors = [ "Thinkofdeath <[email protected]>" ]
edition = "2018"

[dependencies]
lazy_static = "1.4.0"
cgmath = "0.17.0"
collision = "0.20.1"
parking_lot = "0.11.1"
lazy_static = "1.4.0" # TODO: get rid of this and use OnceCell instead
cgmath = "0.17"
collision = "0.20"
parking_lot = "0.12"


[dependencies.leafish_shared]
Expand Down
2 changes: 1 addition & 1 deletion generate_blocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
minecraft-data-rs = { version = "0.6.0", path = "../../minecraft-data-rs" }
convert_case = "0.6.0"
serde_json = "1.0.66"
serde_json = "1.0"

[dependencies.leafish_shared]
path = "../shared"
Expand Down
Loading

0 comments on commit a4e2639

Please sign in to comment.