github-discussions-mirror 0.1.7

A tool to mirror and export GitHub discussions as JSON and static HTML
[package]
name = "github-discussions-mirror"
description = "A tool to mirror and export GitHub discussions as JSON and static HTML"
keywords = ["github", "discussions", "mirror", "backup", "export"]
homepage = "https://codeberg.org/untitaker/github-discussions-mirror"
version = "0.1.7"
edition = "2024"
license = "MIT"
readme = "README.md"


[dependencies]
reqwest = { version = "0.12", features = ["json", "blocking"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.0", features = ["derive", "env"] }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tempfile = "3.8"
maud = "0.26"
pulldown-cmark = "0.9"
regex = "1.0"
url = "2.0"

[dev-dependencies]
httpmock = "0.7"