-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 930 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "shibe-bot"
description = "A Discord bot written in Rust, using Poise."
license = "MIT"
readme = "README.md"
version = "1.0.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.4", features = ["build", "cargo", "rustc"] }
anyhow = "1.0.95"
[dependencies]
dotenvy = "0.15.0"
log = "0.4.25"
poise = "0.6.1"
pretty_env_logger = "0.5.0"
tokio = { version = "1.42", features = ["macros", "rt-multi-thread"] }
rand = "0.8.5"
serde = { version = "1.0.217", features = ["serde_derive"] }
serde_json = "1.0.137"
roux = "2.2.13"
structstruck = "0.4.1"
reqwest = { version = "0.12.12", features = ["json"] }
octocrab = "0.43.0"
tempfile = "3.15.0"
self-replace = "1.5.0"
zip = "2.2.2"
nix = { version = "0.29.0", features = ["process"] }
minreq = { version = "2.13.0", features = ["https"] }