warriors-names/Cargo.toml
asonix 4717e4fdb2
All checks were successful
/ check (armv7-unknown-linux-musleabihf) (push) Successful in 55s
/ check (x86_64-unknown-linux-musl) (push) Successful in 53s
/ clippy (push) Successful in 26s
/ tests (push) Successful in 26s
/ check (aarch64-unknown-linux-musl) (push) Successful in 42s
Strip release binaries
2024-02-12 15:17:51 -06:00

26 lines
724 B
TOML

[package]
name = "warriors-names"
description = "A bot that generates warriors cat names and posts them to mastodon"
version = "0.2.3"
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
repository = "https://git.asonix.dog/asonix/warriors-names"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
[dependencies]
anyhow = "1.0"
rand = "0.8"
reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tokio = { version = "1", features = ["full"] }
url = { version = "2.0", features = ["serde"] }