[package]
name = "fa2"
version = "0.3.0"
rust-version = "1.83.0"
edition = "2021"
authors = [
"Guillaume Plique <guillaume.plique@sciencespo.fr>"
]
description = "Rust implementation of the Force Atlas 2 graph layout algorithm."
documentation = "https://github.com/graphology/rust-fa2#readme"
homepage = "https://github.com/graphology/rust-fa2"
repository = "https://github.com/graphology/rust-fa2"
readme = "README.md"
keywords = ["graph", "layout", "forceatlas"]
license = "MIT"
include = [
"./Cargo.toml",
"./README.md",
"./LICENSE.txt",
"examples/**/*.rs",
"src/**/*.rs",
"tests/**/*.rs"
]
[profile.release-debug]
inherits = "release"
codegen-units = 16
strip = false
debug = true
lto = false
[lib]
name = "fa2"
test = true
doctest = false
[[test]]
name = "tests"
[dependencies]
num-traits = "0.2.19"
rayon = "1.12.0"
[dev-dependencies]
anyhow = "1.0.100"
btoi = "0.5.0"
clap = { version = "4.5.53", features = ["derive"] }
fast-float2 = "0.2.3"
rand = "0.9.2"
simd-csv = "0.10.2"