The techtree manager is a CI tool that derives the techtree graph from the forgejo issues in this repository. It then adds graph visualizations to each issue and the wiki, to give an overview of the tree.
19 lines
566 B
TOML
19 lines
566 B
TOML
[package]
|
|
name = "techtree-manager"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.98"
|
|
base64 = "0.22.1"
|
|
chrono = "0.4.41"
|
|
env_logger = { version = "0.11.8", default-features = false, features = ["auto-color", "color", "humantime"] }
|
|
forgejo-api = { git = "https://git.fa-fo.de/rahix/forgejo-api.git", rev = "a3f6452cfe774898a89ac66be393e5205f5e12b7" }
|
|
log = "0.4.27"
|
|
petgraph = "0.8.1"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
sha256 = "1.6.0"
|
|
tokio = { version = "1.45.0", features = ["full"] }
|
|
url = "2.5.4"
|