Skip to content

Commit 60e30df

Browse files
committed
bump to wgpu 0.25
this commit contains new APIs/ breaking changes
1 parent 78ce2a5 commit 60e30df

File tree

15 files changed

+1778
-802
lines changed

15 files changed

+1778
-802
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "imnodes"
3-
version = "0.4.0"
4-
edition = "2021"
3+
version = "0.5.0"
4+
edition = "2024"
55
authors = ["Benedikt Mandelkow", "imnodes-rs contributors"]
66
description = "Rust bindings to https://github.com/Nelarius/imnodes"
77
license = "MIT/Apache-2.0"
88
categories = ["gui", "api-bindings"]
99
readme = "README.md"
1010

1111
[dependencies]
12-
imnodes-sys = { version = "0.4.0", path = "imnodes-sys" }
12+
imnodes-sys = { version = "0.5.0", path = "imnodes-sys" }
1313
imgui = "0.12"
1414

1515
[features]

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
![Tests](https://github.com/benmkw/imnodes-rs/workflows/Tests/badge.svg)
44

5+
[![imnodes](https://img.shields.io/crates/v/imnodes)](https://crates.io/crates/imnodes)
6+
[![imnodes-sys](https://img.shields.io/crates/v/imnodes-sys)](https://crates.io/crates/imnodes-sys)
7+
58
These are bindings for [imnodes](https://github.com/Nelarius/imnodes)
69
using [cimnodes](https://github.com/cimgui/cimnodes) for [imgui-rs](https://github.com/Gekkio/imgui-rs).
710

imnodes-sys-bindgen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "imnodes-sys-bindgen"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Benedikt Mandelkow"]
5-
edition = "2021"
5+
edition = "2024"
66

77
[dependencies]
8-
bindgen = "0.71.0"
8+
bindgen = "0.71.1"
99
imgui-sys = "0.12"

imnodes-sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "imnodes-sys"
3-
version = "0.4.0"
4-
edition = "2021"
3+
version = "0.5.0"
4+
edition = "2024"
55
authors = ["Benedikt Mandelkow", "imnodes-rs contributors"]
66
description = "Raw FFI bindings to imnodes"
77
license = "MIT/Apache-2.0"
@@ -13,4 +13,4 @@ links = "imnodes"
1313
imgui-sys = "0.12"
1414

1515
[build-dependencies]
16-
cc = "1.2.3"
16+
cc = "1.2.19"

imnodes-wgpu-examples/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "imnodes-wgpu-examples"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = [
55
"Benedikt Mandelkow <benedikt.mandelkow@rwth-aachen.de>",
66
"imgui-wgpu contributors",
77
]
8-
edition = "2021"
8+
edition = "2024"
99

1010
[dependencies]
1111
imnodes = { path = "../" }
1212

13-
wgpu = "23.0"
13+
wgpu = "25.0.0"
1414
winit = "0.30"
1515
futures = "0.3.31"
1616
imgui = "0.12"
1717
imgui-winit-support = "0.13"
18-
imgui-wgpu = { git = "https://github.com/Yatekii/imgui-wgpu-rs", rev = "bab0725a921afeab2066380c9e60b0f1bb011672" }
18+
imgui-wgpu = "0.25"

0 commit comments

Comments
 (0)