[package] name = "ograph-rs" version = "0.4.1" edition = "2021" repository = "https://git.average.name/AverageHelper/ograph-rs" license = "GPL-3.0-or-later" authors = ["AverageHelper"] description = "A simple command-line utility to extract and print OpenGraph metadata from a given URL." keywords = ["opengraph", "url", "website"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.5.13", features = ["derive"] } isahc = "1.7.2" scraper = "0.19.1" url = "2.5.2" [lints.rust] unsafe_code = "forbid" [[bin]] name = "ograph" path = "src/main.rs"