reticulum-synthesis/Cargo.toml
2025-11-26 22:39:02 +01:00

23 lines
622 B
TOML

[package]
name = "reticulum-synthesis"
version = "0.1.0"
edition = "2024"
description = "cli tool to randomly generate and run local Reticulum networks"
authors = ["tuxmain <tuxmain@zettascript.org>"]
repository = "https://git.txmn.tk/tuxmain/reticulum-synthesis"
license = "AGPL-3.0-only"
[features]
default = ["render"]
# Render graph to SVG
render = ["dep:forceatlas2"]
[dependencies]
argp = "0.4.0"
forceatlas2 = { version = "0.8.0", optional = true }
rand = "0.8.5"
reticulum = { git = "https://github.com/jirijakes/rust-reticulum", rev = "6272c6d25fb209e0a1827db8690199dcc2b008fd" }
[profile.release]
lto = true