-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 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
[package]
name = "trishna"
version = "0.1.0"
authors = ["Shashank Baghel <shnk@radcolor.dev>"]
edition = "2021"
license = "GNU/GPL-v3.0"
description = "Personal telegram assistant/helper and notifier bot written in rust-lang using teloxide! @Trishna_Bot."
keywords = ["telegram", "bot", "rust-lang"]
repository = "https://git.radcolor.dev/trishna.git"
homepage = "https://git.radcolor.dev/trishna.git"
readme = "README.md"
include = ["src/**/*", "LICENSE-*", "README.md"]
[dependencies]
tokio = { version = "1.19.2", features = ["rt-multi-thread", "macros"] }
reqwest = { version = "0.11.11", features = ["blocking", "rustls-tls-webpki-roots"], default-features = false }
scraper = "0.13.0"
futures = "0.3.21"
log = "0.4.17"
egg-mode = { version = "0.16.0", features = ["rustls_webpki"], default-features = false }
pretty_env_logger = "0.4.0"
regex = "1.5.6"
teloxide = { version = "0.10.0", features = ["macros", "ctrlc_handler", "auto-send", "rustls"], default-features = false }
[profile.release]
codegen-units = 1
lto = "fat"