Lucien Cartier-Tilet
4789ffd34d
This commit removes DATABASE_URL variable in favour of a fixed name. The project won’t panic anymore if this variable isn’t set. This removes the need for dotenvy. It also adds the necessary files to dockerize the application. Update instructions in README on how to run the project. Add possibility to compile the project without a database available. Closes #8
22 lines
666 B
TOML
22 lines
666 B
TOML
[package]
|
|
name = "p4bl0t"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = ["Lucien Cartier-Tilet <lucien@phundrak.com>"]
|
|
license-file = "LICENSE.md"
|
|
description = "A simple logging Discord bot."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/phundrak/p4bl0t"
|
|
repository = "https://github.com/phundrak/p4bl0t"
|
|
keywords = ["discord", "bot", "logging"]
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
color-eyre = "0.6.2"
|
|
poise = { version = "0.5.7" }
|
|
sqlx = { version = "0.7.3", features = ["sqlite", "tls-rustls", "runtime-tokio-rustls"] }
|
|
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|