Skip to content

Commit b13b047

Browse files
committed
update petgraph to 0.7.x
1 parent e9cb582 commit b13b047

File tree

16 files changed

+51
-37
lines changed

16 files changed

+51
-37
lines changed

Cargo.lock

Lines changed: 33 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ egui = { version = "0.30.0", default-features = false, features = [
1515
"persistence",
1616
] }
1717
rand = "0.8"
18-
petgraph = { version = "0.6", default-features = false, features = [
18+
petgraph = { version = "0.7", default-features = false, features = [
19+
"graphmap",
1920
"stable_graph",
2021
"matrix_graph",
2122
"serde-1",

examples/animated_nodes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/basic_custom/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/bevy_basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = "0.21"
1010
bevy = "0.14"
1111
bevy_egui = "0.29"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/demo/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ egui_graphs = { path = "../..", features = ["events"] }
1010
egui = "0.30"
1111
eframe = "0.30"
1212
serde_json = "1.0"
13-
petgraph = "0.6"
14-
fdg = { git = "https://github.com/grantshandy/fdg" }
13+
petgraph = "0.7"
14+
# https://github.com/grantshandy/fdg/pull/25
15+
fdg = { git = "https://github.com/flokli/fdg", rev = "d6d8939875f8d7c7d2c0ed58079f0f0468c57d1a" }
1516
rand = "0.8"
1617
crossbeam = "0.8"

examples/flex_nodes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/interactive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/label_change/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/layouts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/multiple/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/rainbow_edges/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
egui_graphs = { path = "../.." }
88
egui = "0.30"
99
eframe = "0.30"
10-
petgraph = "0.6"
10+
petgraph = "0.7"

examples/undirected/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

examples/wasm_custom_draw/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"
1313

1414
# Wasm related dependencies
1515
getrandom = { version = "0.2", features = ["js"] }

examples/window/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
egui_graphs = { path = "../.." }
1010
egui = "0.30"
1111
eframe = "0.30"
12-
petgraph = "0.6"
12+
petgraph = "0.7"

0 commit comments

Comments
 (0)