-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
67 lines (57 loc) · 1.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "remindee-bot"
version = "0.2.8"
authors = ["Nikolai Oplachko <magnickolas@gmail.com>"]
edition = "2021"
license = "GPL-3.0-only"
description = "Reminder bot for Telegram without bullshit"
homepage = "https://github.com/magnickolas/remindee-bot"
repository = "https://github.com/magnickolas/remindee-bot"
readme = "README.md"
keywords = ["bot", "reminder", "cron", "telegram-bot", "reminders"]
categories = ["command-line-utilities"]
[workspace]
members = ["."]
[dependencies]
async-std = "1.12"
async_once = "0.2"
chrono = "0.4"
chrono-tz = "0.9"
chronoutil = "0.2"
cron-parser = "0.9"
directories = "5.0"
lazy_static = "1.4"
log = "0.4"
pretty_env_logger = "0.5"
regex = "1.7"
sea-orm = "0.12"
pest = "2.0"
pest_derive = "2.0"
serde_json = "1.0"
bitmask-enum = "2.1"
nonempty = "0.10"
tzf-rs = { version = "0.4.4", default-features = false }
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_with]
version = "3.0"
features = ["chrono"]
[dependencies.clap]
version = "4.1"
features = ["derive", "env", "string"]
[dependencies.sea-orm-migration]
version = "0.12"
features = ["runtime-tokio-rustls", "sqlx-sqlite"]
[dependencies.teloxide]
version = "0.12"
features = ["macros"]
[dependencies.tokio]
version = "1.25"
features = ["rt-multi-thread", "macros"]
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dev-dependencies]
test-case = "3.0"
strfmt = "0.2"