Skip to content

Commit 67dd6cc

Browse files
committed
Fix semver issues
1 parent cfeba03 commit 67dd6cc

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ min = 0 # allow non-first increment
4848

4949
[dependencies]
5050
bytemuck = "1"
51-
imgui = ">=0.1, <0.9"
51+
imgui = "0.8"
5252
log = "0.4"
5353
smallvec = "1"
54-
wgpu = ">=0.10, <0.12"
54+
wgpu = "0.11"
5555

5656
[dev-dependencies]
5757
bytemuck = { version = "1.4", features = ["derive"] }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cargo run --release --example hello_world
2222

2323
# Status
2424

25-
Supports `wgpu` `0.10` and `0.11`. Compatible with all imgui versions after `0.1`. `winit-0.25` is used with the examples.
25+
Supports `wgpu` `0.11` and imgui `0.8`. `winit-0.25` is used with the examples.
2626

2727
Contributions are very welcome.
2828

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ skip = [
2525
vulnerability = "deny"
2626
unmaintained = "deny"
2727
ignore = [
28+
"RUSTSEC-2021-0119"
2829
]
2930

3031
[sources]

0 commit comments

Comments
 (0)