From 173096e6b8cda249e08569b19b0abddb999cdab4 Mon Sep 17 00:00:00 2001 From: Sylvester Hesp Date: Mon, 13 Nov 2023 13:24:37 +0100 Subject: [PATCH] Cleaned up dependency features to not pull in what isn't required --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ffcf372..6528fc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,9 +9,9 @@ description = "Interactive graph visualization widget for rust powered by egui" edition = "2021" [dependencies] -egui = "0.23" +egui = { version = "0.23", default-features = false } rand = "0.8" -petgraph = "0.6" +petgraph = { version = "0.6", default-features = false, features = ["stable_graph", "matrix_graph"] } crossbeam = { version = "0.8", optional = true } serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", optional = true }