26 lines
691 B
TOML
26 lines
691 B
TOML
[package]
|
|
name = "shibe-bot"
|
|
description = "A Discord bot written in Rust, using Poise."
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
version = "0.4.1"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[build-dependencies]
|
|
vergen = { version = "9.0.1", features = ["build", "cargo", "rustc"] }
|
|
anyhow = "1.0.91"
|
|
|
|
[dependencies]
|
|
dotenvy = "0.15.0"
|
|
log = "0.4.22"
|
|
poise = "0.6.1"
|
|
pretty_env_logger = "0.5.0"
|
|
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"] }
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.213", features = ["serde_derive"] }
|
|
serde_json = "1.0.132"
|
|
roux = "2.2.13"
|
|
structstruck = "0.4.1"
|