Skip to content

Commit

Permalink
Specifically specify required features for dependent crates (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
oisyn authored Nov 13, 2023
1 parent 5d92280 commit d72e9e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit d72e9e3

Please sign in to comment.