-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (64 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
68 lines (64 loc) · 1.89 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "coco-bot"
version = "0.8.0"
authors = ["MRDGH2821 <ask.mrdgh2821@outlook.com>"]
categories = ["Discord", "Bot", "Entertainment"]
edition = "2024"
exclude = [
".cspell.json",
".devcontainer",
".editorconfig",
".env",
".git",
".github",
".gitignore",
".markdownlintignore",
".trunk",
".v8rignore",
".vscode",
"LICENCE",
"megalinter-reports",
"README.md",
"sample.env",
"target",
]
homepage = "https://github.com/MRDGH2821/Coco-Bot"
include = ["src"]
keywords = ["discord", "bot", "entertainment", "rust"]
license-file = "LICENCE.txt"
publish = false
repository = "https://github.com/MRDGH2821/Coco-Bot"
readme = "README.md"
description = "Rust port of [KittyBot](https://github.com/olliequ/KittyBot) for the CS@unimelb Discord server. "
[package.metadata.scripts]
watch = "cargo watch -x run"
run = "cargo run"
build-release = "cargo build --release"
build = "cargo build"
test = "cargo test -- --nocapture"
clean = "cargo clean"
format = "cargo fmt --all -- --check"
lint = "cargo clippy -- -D warnings"
sort = "cargo sort"
[dependencies]
ab_glyph = "0.2.29"
dotenv = "0.15"
image = "0.25.6"
imageproc = "0.25.0"
poise = { git = "https://github.com/serenity-rs/poise.git", branch = "serenity-next" }
rand = "0.9.1"
reqwest = { version = "0.12", features = ["json", "rustls-tls", "trust-dns"] }
rusttype = "0.9.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.140"
serenity = { git = "https://github.com/serenity-rs/serenity.git", branch = "next", features = [
"rustls_backend",
] }
tokio = { version = "1.45.0", features = ["macros", "rt-multi-thread"] }
tracing = { version = "0.1.41", features = ["async-await", "log"] }
tracing-subscriber = "0.3.19"
urlencoding = "2.1"
[build-dependencies]
humantime = "2.1"
[target.'cfg(target_env = "musl")'.dependencies]
openssl = { version = "0.10.73", features = ["vendored"] }