20 lines
509 B
TOML
20 lines
509 B
TOML
[package]
|
|
name = "void-sentinel"
|
|
description = "A discord bot written in Rust"
|
|
version = "0.1.0-alpha"
|
|
authors = ["Kishor Ramanan <hello@kishorramanan.com>"]
|
|
edition = "2024"
|
|
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
dotenvy = "0.15.7"
|
|
poise = "0.6.1"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
serenity = "0.12.4"
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
|
tracing = "0.1.43"
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "fmt"] }
|