aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 88342e40b18a4ef86dddc2c77c6c57b9d7ee75fe (plain) (blame)
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
69
[package]
name = "glitch-ng"
version = "0.6.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dotenv = "0.15"

log = "0.4"
tracing = "0.1"
tracing-subscriber = "0.2"

rand = "0.8"

reqwest = "0.11"
chrono = { version = "0.4", features = ["serde"] }

[dependencies.serenity]
git = "https://github.com/serenity-rs/serenity"
branch = "next"
default-features = false
features = [
	"rustls_backend",
	"cache",
	"client",
	"gateway",
	"model",
	"utils",
	"collector",
]
[patch.crates-io.serenity]
git = "https://github.com/serenity-rs/serenity"
branch = "next"

[dependencies.poise]
git = "https://github.com/kangalioo/poise"
branch = "master"
features = [
	"collector"
	]

[dependencies.tokio]
version = "1"
features = [
	"macros",
	"signal",
	"rt-multi-thread"
]

[dependencies.serde]
version = "1"
features = [ "derive" ]

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
version = "0.5"
features = [
	"runtime-tokio-rustls",
	"postgres",
	"uuid",
	"chrono",
	"migrate",
	"macros",
    "offline",
]