-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (43 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "grapher"
version = "0.2.2"
edition = "2021"
authors = [ "Alexander Neuhäuser <[email protected]>" ]
repository = "https://github.com/iceHtwoO/RustGrapher"
license-file = "LICENSE"
description = "Simulate and visualize a force directed graph"
keywords = ["graph", "graphics", "simulation", "force-directed-graph"]
readme = "README.md"
exclude = [
"tools/*",
".vscode/*",
"example_images/*",
"examples/reference.json",
".github/*",
"tools/*"
]
[dependencies]
glam = "0.29.0"
glium = "0.33"
petgraph = "0.6.5"
rand = "0.8.5"
winit = { version = "0.28.7"}
[[example]]
name = "wikipedia"
path = "examples/wikipedia.rs"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
petgraph-gen = "0.1.3"
[[bench]]
name = "physics_bench"
harness = false
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
[profile.release]
debug = true
[lints.clippy]
derivable_impls = "allow"
new_without_default = "allow"