warriors-names/Cargo.toml

26 lines
724 B
TOML
Raw Normal View History

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