Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <blitzar90@gmail.com>, <blitzarx1@gmail.com>"]

[workspace.lints.rust]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 0 additions & 3 deletions crates/egui_graphs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading