diff --git a/Cargo.toml b/Cargo.toml index 59f8a17..3cc55d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,11 +7,11 @@ members = [ resolver = "2" [workspace.package] -version = "0.29.0" +version = "0.30.0" edition = "2021" license = "MIT" -homepage = "https://blitzar-tech.github.io/egui_graphs/" -repository = "https://github.com/blitzar-tech/egui_graphs" +homepage = "https://blitzarx1.github.io/egui_graphs" +repository = "https://github.com/blitzarx1/egui_graphs" authors = ["Dmitrii Samsonov , "] [workspace.lints.rust] diff --git a/README.md b/README.md index 0dae2b1..a4314c2 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Graph visualization with rust, [petgraph](https://github.com/petgraph/petgraph) The project implements a Widget for the egui framework, enabling easy visualization of interactive graphs in rust. The goal is to implement the very basic engine for graph visualization within egui, which can be easily extended and customized for your needs. -Check the [web-demo](https://blitzarx1.github.io/egui_graphs/#g=bipartite.json) for the comprehensive overview of the widget possibilities. +Check the [web-demo](https://blitzarx1.github.io/egui_graphs) for the comprehensive overview of the widget possibilities. - [x] Build wasm or native; - [x] Layouts and custom layout mechanism; diff --git a/crates/egui_graphs/Cargo.toml b/crates/egui_graphs/Cargo.toml index ca944d5..91bf631 100644 --- a/crates/egui_graphs/Cargo.toml +++ b/crates/egui_graphs/Cargo.toml @@ -29,15 +29,12 @@ crossbeam = { workspace = true, optional = true } [features] events = ["dep:crossbeam", "demo-core/events"] - - [dev-dependencies] eframe.workspace = true serde_json.workspace = true ureq = { workspace = true, default-features = true, features = ["json"] } criterion = { workspace = true, features = ["html_reports"] } demo-core = { path = "../demo-core" } - [[bench]] name = "fruchterman_reingold"