forked from obviyus/HamVerBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 948 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
[package]
name = "HamVerBot"
version = "0.1.0"
edition = "2021"
authors = ["Ayaan Zaidi <[email protected]>"]
description = "Steward of #f1 on Libera.Chat"
license = "MIT"
repository = "https://github.com/obviyus/HamVerBot"
[dependencies]
irc = { version = "1.0", default-features = false, features = [
"ctcp",
"toml_config",
"tls-rust",
] }
log = "0.4.22"
base64 = "0.22.1"
chrono = "0.4.38"
dotenv = "0.15.0"
env_logger = "0.11.5"
futures = "0.3.31"
reqwest = { version = "0.12.9", default-features = false, features = [
"json",
"rustls-tls",
"http2",
] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio-rustls"] }
tokio = { version = "1.41.0", features = ["full"] }
tokio-cron-scheduler = "0.10.2"
anyhow = "1.0.92"
chrono-tz = "0.10.0"
# Defining bin here to make multi stage docker build work
[[bin]]
name = "HamVerBot"
path = "src/main.rs"