Added new callback types

This commit is contained in:
2023-07-25 17:44:12 +03:00
parent c682fd310b
commit 64a5435dc3
8 changed files with 168 additions and 70 deletions

View File

@@ -14,20 +14,31 @@ members = [".", "migration", "entity", "cryptography"]
[dependencies]
anyhow = "1"
arrayvec = "0.7"
base64 = "0.21"
cryptography = { version = "0.1", path = "cryptography" }
dotenv = "0.15"
entity = { version = "0.1", path = "entity" }
futures = "0.3"
hex = "0.4"
itertools = "0.11"
log = "0.4"
migration = { version = "0.2", path = "migration" }
parking_lot = "0.12"
pretty_env_logger = "0.5"
rustc-hash = "1"
sea-orm = { version = "0.11", features = ["sqlx-mysql", "runtime-tokio-rustls"] }
sea-orm = { version = "0.11", features = [
"sqlx-mysql",
"runtime-tokio-rustls",
] }
serde = "1"
serde_json = "1"
teloxide = { version = "0.12", features = ["macros", "ctrlc_handler", "rustls", "throttle"], default-features = false }
sha2 = "0.10"
teloxide = { version = "0.12", features = [
"macros",
"ctrlc_handler",
"rustls",
"throttle",
], default-features = false }
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
trim-in-place = "0.1"