-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (67 loc) · 1.71 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "rustify"
version = "0.1.0"
edition = "2021"
rust-version = "1.75.0"
[dependencies]
again = "0.1.2"
anyhow = { version = "1.0.87", features = ["backtrace"] }
# base64 = "0.22.1"
cached = { version = "0.54.0", features = ["async", "redis_tokio"] }
chrono = "0.4.38"
convert_case = "0.6.0"
derive_more = { version = "1.0.0", features = ["full"] }
dotenv = "0.15.0"
indoc = "2.0.5"
influxdb = { version = "0.6.0", features = ["derive"] }
itertools = "0.10.5"
lazy_static = "1.5.0"
redis = { version = "0.27.5", features = ["aio", "tokio-comp"] }
regex = { version = "1.10.6", features = ["pattern"] }
reqwest = "0.12.7"
rspotify = "0.13.3"
rustrict = { version = "0.7.28", features = ["customize"] }
serde = "1.0.210"
serde_json = "1.0.128"
sqlx = { version = "0.7.4", features = ["postgres"] }
strsim = "0.10.0"
strum = "0.24.1"
strum_macros = "0.24.3"
# todo try to remove after next teloxide upgrade
# tokio-util = { version = "0.7.12", features = ["codec"] }
tracing = "0.1.40"
tracing-loki = "0.2.5"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
url = "2.5.2"
whatlang = { version = "0.16.4", features = ["serde"] }
[dependencies.isolang]
features = ["serde"]
version = "2.4.0"
[dependencies.sea-orm]
default-features = false
version = "1.0.1"
features = [
"runtime-tokio-native-tls",
"macros",
"sqlx-postgres",
"debug-print",
"with-chrono",
]
[dependencies.teloxide]
version = "0.13.0"
features = ["macros", "bincode-serializer"]
[dependencies.tokio]
version = "1.40.0"
features = ["rt-multi-thread", "macros"]
[features]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
debug = 1
[[bin]]
name = "bot"
[[bin]]
name = "track_check"
[[bin]]
name = "metrics"