Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump async-std from 1.6.3 to 1.9.0 #210

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
242 changes: 139 additions & 103 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bve-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default = []
renderdoc = ["bve-render/renderdoc"]

[dependencies]
async-std = "1.6"
async-std = "1.9"
bve = { version = "0.0.1", path = "../bve" }
bve-render = { version = "0.0.1", path = "../bve-render" }
env_logger = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion bve-conveyor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["bve", "memory", "buffer-belt", "wgpu"]

[dependencies]
arrayvec = "0.5"
async-std = "1.6"
async-std = "1.9"
bitflags = "1"
lru = { version = "0.6", features = ["nightly"] }
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion bve-corpus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ independent = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-std = "1.6"
async-std = "1.9"
backtrace = "0.3"
bve = { version = "0.0.1", path = "../bve" }
crossbeam-channel = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion bve-native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-std = "1.6"
async-std = "1.9"
backtrace = "0.3"
bve = { version = "0.0.1", path = "../bve" }
bve-derive = { version = "0.0.1", path = "../bve-derive" }
Expand Down
2 changes: 1 addition & 1 deletion bve-obj-conv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ independent = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-std = "1.6"
async-std = "1.9"
bve = { version = "0.0.1", path = "../bve" }
itertools = "0.9"
obj = "0.10"
2 changes: 1 addition & 1 deletion bve-render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ keywords = ["bve", "renderer", "wgpu"]
default = []

[dependencies]
async-std = "1.6"
async-std = "1.9"
bve = { version = "0.0.1", path = "../bve" }
bve-conveyor = { version = "0.1.0", path = "../bve-conveyor" }
bve-imgui-wgpu = { version = "0.0.1", path = "../extern/bve-imgui-wgpu" }
Expand Down
4 changes: 2 additions & 2 deletions bve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords = ["bve", "serialization", "simulation"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-std = "1.5"
async-std = "1.9"
async-trait = "0.1"
bve-common = { version = "0.0.1", path = "../bve-common", features = ["iter", "nom"]}
bve-derive = { version = "0.0.1", path = "../bve-derive" }
Expand Down Expand Up @@ -50,7 +50,7 @@ unic-langid = { version = "0.9", features = ["unic-langid-macros"] }
unic-locale = "0.9"

[dev-dependencies]
async-std = { version = "1.6", features = ["attributes"] }
async-std = { version = "1.9", features = ["attributes"] }
indoc = "1.0"
fern = "0.6"
maplit = "1"
Expand Down