summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e0305a5f002b21fecd43dccec3744b2f8581ae1e (plain)
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
[workspace]
members = [
	"crates/bot",
	"crates/bot-client",
	"crates/bot-config",
	"crates/bot-consts",
	"crates/bot-error",
	"crates/bot-http",
	"crates/bot-jobs",
	"crates/git-tracker"
]
resolver = "2"

[workspace.dependencies]
bot = { path = "./crates/bot" }
bot-client = { path = "./crates/bot-client" }
bot-commands = { path = "./crates/bot-commands" }
bot-config = { path = "./crates/bot-config" }
bot-consts = { path = "./crates/bot-consts" }
bot-error = { path = "./crates/bot-error" }
bot-http = { path = "./crates/bot-http" }
bot-jobs = { path = "./crates/bot-jobs" }
git-tracker = { path = "./crates/git-tracker" }

git2 = { version = "0.18.3", default-features = false }
log = "0.4.22"
serenity = { version = "0.12.2", features = ["unstable_discord_api"] }
tokio = { version = "1.38.0", features = [
	"macros",
	"rt-multi-thread",
	"signal"
] }