-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 loc) · 991 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
[package]
name = "goober-bot"
version = "1.0.0"
edition = "2021"
publish = false
[dependencies]
anyhow = "1.0.91"
poise = { git = "https://github.com/fgardt/poise.git", branch = "feat/user_apps", version = "0.6.1", features = [ "unstable" ] }
shuttle-runtime = "0.48.0"
# Since poise is a serenity command framework, it can run on Shuttle with shuttle-serenity
shuttle-serenity = "0.48.0"
tracing = "0.1.37"
tokio = "1.41.0"
serde = { version = "1.0.213", features = ["derive"] }
shuttle-persist-msgpack = { version = "0.48.0", path = "shuttle-persist-msgpack" }
rand = "0.8.5"
chrono = "0.4.38"
paste = "1.0.15"
octocrab = "0.41.2"
serde_json = "1.0.132"
topgg = { version = "1.4.2", features = [ "autoposter", "serenity-cached" ], git = "https://github.com/Top-gg-Community/rust-sdk.git" }
commit-history = { version = "0.1.0", path = "commit-history" }
charts-rs = { version = "0.3.19", features = ["image-encoder"] }
[workspace]
members = ["commit-history", "shuttle-persist-msgpack"]