-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (51 loc) · 1.63 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "discord-banner-bot"
version = "0.5.1"
edition = "2021"
authors = ["Andre Julius <[email protected]>"]
repository = "https://github.com/NotNorom/discord-banner-bot"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
dev = []
[profile.release]
debug = true
[dependencies]
async-repeater = { git = "https://github.com/NotNorom/async-repeater.git" }
# async-repeater = { path = "/home/norom/Documents/Code/async-repeater" }
bytes = "1.6.0"
chrono = "0.4.38"
clap = { version = "4.5.4", features = ["derive"] }
config = { version = "0.14", default-features = false, features = ["toml"] }
fred = { version = "9.0.3", default-features = false, features = [
"i-std",
"i-sets",
"i-hashes",
] }
poise = "0.6.1"
rand = "0.8.5"
reqwest = { version = "0.12.4", default-features = false, features = [
"json",
"native-tls-vendored",
] }
serde = "1.0.203"
thiserror = "1.0.61"
tokio = { version = "1.37.0", features = [
"rt-multi-thread",
], default-features = false }
tokio-stream = "0.1.15"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"tracing-log",
"env-filter",
"parking_lot",
] }
url = "2.5.0"
[patch.crates-io]
poise = { git = "https://github.com/serenity-rs/poise.git", branch = "serenity-next" }
# poise = { path = "/home/norom/Documents/Code/poise" }
# serenity = { git = "https://github.com/serenity-rs/serenity" }
# serenity = { path = "/home/norom/Documents/Code/serenity" }
#[patch."https://github.com/serenity-rs/serenity.git"]
# serenity = { path = "/home/norom/Documents/Code/serenity" }