Skip to content

Commit

Permalink
Keywords and categories to cargo.toml (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzarx1 authored Jul 26, 2024
1 parent 14da257 commit 39f1629
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ homepage = "https://github.com/blitzarx1/egui_graphs"
repository = "https://github.com/blitzarx1/egui_graphs"
description = "Interactive graph visualization widget for rust powered by egui"
edition = "2021"
keywords = ["egui", "graph", "ui", "graph", "node-graph"]
categories = ["gui", "visualization", "graphs"]

[dependencies]
egui = { version = "0.27", default-features = false }
rand = "0.8"
petgraph = { version = "0.6", default-features = false, features = ["stable_graph", "matrix_graph"] }
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 }
Expand Down

0 comments on commit 39f1629

Please sign in to comment.