test build

This commit is contained in:
Aleksandr Trushkin
2025-03-28 21:06:30 +03:00
parent 6186436ea8
commit 4cc17a27de
4 changed files with 51 additions and 10 deletions

View File

@ -2,24 +2,29 @@
name = "altherego"
version = "0.9.9"
authors = ["Aleksandr Trushkin <atrushkin@outlook.com>"]
edition = "2018"
edition = "2024"
default-run = "altherego"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
teloxide = { version = "0.12.2", features = ["macros", "auto-send"] }
tokio = {version = "1.8", features = ["full"]}
tokio = { version = "1.8", features = ["full"] }
uuid = { version = "0.8.1", features = ["v4"] }
log = "0.4"
env_logger = "0.8.1"
envconfig = "0.9.1"
serde = "1.0.137"
serde = "1.0.219"
reqwest = { version = "0.11.10", features = ["tokio-native-tls"] }
serde_json = "1.0.81"
sqlx = { version = "0.5.13", features = ["sqlite", "runtime-tokio-native-tls", "chrono", "migrate"] }
chrono = "0.4.19"
anyhow = "1.0.57"
serde_json = "1.0.140"
sqlx = { version = "0.8.3", features = [
"sqlite",
"runtime-tokio-native-tls",
"chrono",
"migrate",
] }
chrono = "0.4.40"
anyhow = "1.0.97"
async-trait = "0.1.53"
tokio-stream = "0.1.8"
rand = "0.8.5"