- Updated Cargo.toml with necessary dependencies - Enhanced config.rs with database and application configuration - Updated main.rs with improved bot initialization - Added development database file
26 lines
629 B
TOML
26 lines
629 B
TOML
[package]
|
|
name = "pawctioneer-bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
teloxide = { version = "0.17.0", features = ["macros", "ctrlc_handler"] }
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
|
sqlx = { version = "0.8.6", features = [
|
|
"runtime-tokio-rustls",
|
|
"sqlite",
|
|
"chrono",
|
|
"macros",
|
|
"rust_decimal",
|
|
] }
|
|
rust_decimal = { version = "1.33", features = ["serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
env_logger = "0.11.8"
|
|
anyhow = "1.0"
|
|
dotenvy = "0.15"
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.26.1"
|