14 lines
547 B
TOML
14 lines
547 B
TOML
[package]
|
|
name = "phoebe-discord"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
phoebe = { path = "../../phoebe" }
|
|
serenity = { version = "0.10.10", default-features = false, features = ["builder", "cache", "client", "gateway", "model", "http", "utils", "rustls_backend"] }
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "sqlite"] }
|
|
tracing = "0.1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
discord_message_format = { git = "https://git.lavender.software/charlotte/discord-message-format.git" }
|
|
serde_json = "1.0.79"
|