-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 908 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
34
[package]
name = "am-rate-bot"
version = "0.36.0"
edition = "2021"
authors = ["lucky"]
[dependencies]
toml = "0.8"
env_logger = "0.11"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
serde_repr = "0.1"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
teloxide = { version = "0.13", features = ["macros", "webhooks-axum", "throttle"] }
quick-xml = { version = "0.37", features = ["serialize"] }
rust_decimal = { version = "1.36", features = ["serde-with-arbitrary-precision"] }
rust_decimal_macros = "1.36"
chrono = "0.4"
# sugar
strum = { version = "0.26", features = ["derive"] }
derive_more = { version = "1.0", features = ["display"] }
thiserror = "2.0"
anyhow = "1.0"
# vtb/sas src html parser
select = "0.6.0"
[features]
default = ["moex"]
github_ci = []
moex = []