Add metadata and license information

This commit is contained in:
Elnu 2023-08-12 13:01:20 -07:00
parent 68028e700e
commit eea354e322
5 changed files with 612 additions and 2 deletions

View file

@ -2,6 +2,10 @@
name = "images"
version = "0.1.0"
edition = "2021"
authors = ["ElnuDev <elnu@elnu.com>"]
description = "An API for fetching images of a query, sourced from Microsoft Bing."
repository = "https://git.elnu.com/jichan.org/apis/"
license = "GPL-3.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -6,7 +6,6 @@ use rand::seq::SliceRandom;
pub const BING: &str = "https://www.bing.com/images/search";
/// An API for fetching images of a query, sourced from Microsoft Bing.
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
struct Args {