-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 1.01 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
[package]
name = "rentbot_sslv"
version = "0.1.0"
edition = "2021"
# # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [features]
# # If compiling on a system without OpenSSL installed, or cross-compiling for a different
# # architecture, enable this feature to compile OpenSSL as part of the build.
# # See https://docs.rs/openssl/#vendored for more.
# static_ssl = ['openssl/vendored']
# [dependencies.openssl]
# optional = true
[dependencies]
base64 = "0.21.0"
chrono = "0.4.24"
derive_builder = "0.12.0"
env_logger = "0.10.0"
futures = "0.3.28"
log = "0.4.18"
pretty_env_logger = "0.5.0"
pretty_logger = "0.1.8"
regex = "1.8.1"
# reqwest = { version = "0.11.16", default-features = false }
reqwest = { version = "0.11.16", features = ["blocking", "cookies"] }
rusqlite = "0.29.0"
scraper = "0.16.0"
serde_urlencoded = "0.7.1"
# sqlite = "0.30.4"
teloxide = { version = "0.12.2" }
tokio = { version = "1.28.0", features = ["full"] }
unescape = "0.1.0"
urlencoding = "2.1.2"