-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 920 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "steal_stickers_bot"
version = "0.1.0"
edition = "2021"
[dependencies]
# main crates
telers = {version = "1.0.0-alpha", features = ["memory-storage"]}
tokio = { version = "1.36", features = ["macros"]}
sea-query = "0.31"
sea-query-binder = { version = "0.6.0", features = ["sqlx-postgres"] }
sqlx = { version = "0.7", features = [
"postgres",
"time",
"runtime-tokio"
] }
# on crates.io old version
grammers-client = { git = "https://github.com/Lonami/grammers" }
grammers-tl-types = { git = "https://github.com/Lonami/grammers" }
grammers-session = { git = "https://github.com/Lonami/grammers" }
serde_json = "1"
serde = { version = "1.0", features = ["derive"] }
random-string = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
toml = "0.8"
thiserror = "1"
async-trait = "0.1"
clap = { version = "4.5.16", features = ["derive"] }
chrono = "0.4"