phoebe/services/phoebe-discord/Cargo.toml

14 lines
547 B
TOML
Raw Permalink Normal View History

2022-04-08 16:52:59 +00:00
[package]
name = "phoebe-discord"
version = "0.1.0"
edition = "2021"
[dependencies]
phoebe = { path = "../../phoebe" }
2022-04-11 11:52:29 +00:00
serenity = { version = "0.10.10", default-features = false, features = ["builder", "cache", "client", "gateway", "model", "http", "utils", "rustls_backend"] }
2022-04-08 16:52:59 +00:00
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "sqlite"] }
tracing = "0.1"
tokio = { version = "1", features = ["full"] }
2022-04-11 11:52:29 +00:00
discord_message_format = { git = "https://git.lavender.software/charlotte/discord-message-format.git" }
serde_json = "1.0.79"