[[bench]]
harness = false
name = "physics_bench"
path = "benches/physics_bench.rs"
[dependencies.glam]
version = "0.29.0"
[dependencies.glium]
version = "0.33"
[dependencies.petgraph]
version = "0.6.5"
[dependencies.rand]
version = "0.8.5"
[dependencies.winit]
version = "0.28.7"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.petgraph-gen]
version = "0.1.3"
[dev-dependencies.serde]
features = ["derive"]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "headless"
path = "examples/headless.rs"
[[example]]
name = "wikipedia"
path = "examples/wikipedia.rs"
[lib]
name = "grapher"
path = "src/lib.rs"
[lints.clippy]
derivable_impls = "allow"
new_without_default = "allow"
[package]
authors = ["Alexander Neuhäuser <alexander.neuhaeuser@leafnova.net>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Simulate and visualize a force directed graph"
edition = "2021"
exclude = ["tools/*", ".vscode/*", "example_images/*", ".github/*"]
keywords = ["graph", "graphics", "simulation", "force-directed-graph"]
license-file = "LICENSE"
name = "grapher"
readme = "README.md"
repository = "https://github.com/iceHtwoO/RustGrapher"
version = "0.2.2"
[profile.release]
debug = 2
[target.x86_64-unknown-linux-gnu]