github-trending-rs 0.0.2

A simple Rust crate to fetch trending repositories from GitHub.
Documentation
[package]
name = "github-trending-rs"
version = "0.0.2"
edition = "2024"
license = "GLWTPL"
description = "A simple Rust crate to fetch trending repositories from GitHub."
repository = "https://github.com/dearfl/github-trending-rs"
keywords = ["github-trending"]
exclude = [ ".*", "flake.*", "archive" ]

[dependencies]
reqwest = { version = "0.12.18", optional = true }
soupy = { version = "0.10.0", default-features = false, features = ["html"] }
thiserror = "2.0.12"

[features]
default = ["reqwest"]
reqwest = ["dep:reqwest"]

[dev-dependencies]
anyhow = "1.0.98"
serde_json = "1.0.140"
tokio = { version = "1.45.1", features = ["full"] }

[lints.rust]
unsafe_code = "forbid"