-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (39 loc) · 961 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
35
36
37
38
39
40
41
42
43
[package]
name = "marvin"
version = "0.2.0"
authors = ["SphericalKat <amolele@gmail.com>"]
edition = "2018"
description = "A group management bot for Telegram"
repository = "https://github.com/SphericalKat/marvin"
license = "MIT"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
teloxide = { version = "0.7.0", features = [
"macros",
"auto-send",
"rustls",
"dispatching2",
"cache-me",
"ctrlc_handler"
], default-features = false }
log = "0.4.14"
pretty_env_logger = "0.4.0"
tokio = { version = "1.17.0", features = ["rt-multi-thread", "macros", "rt"] }
dotenv = "0.15.0"
anyhow = "1.0.53"
sqlx = { version = "0.5.10", features = [
"macros",
"runtime-tokio-rustls",
"postgres",
"uuid",
"chrono",
"offline",
], default-features = false }
lazy_static = "1.4.0"
chrono = "0.4.19"
[build-dependencies]
cargo-emit = "0.2.1"
[profile.release]
opt-level = 3
lto = true