-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 802 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 = "event-bot"
description = "A bot for Telegram to manage time-based events"
version = "0.1.0"
license = "GPL-3.0"
authors = ["asonix <asonix.dev@gmail.com>"]
repository = "https://github.com/asonix/telegram-event-bot"
readme = "README.md"
keywords = ["telegram", "events", "bot"]
[dependencies]
actix = "0.5"
base-x = "0.2"
chrono = "0.4"
chrono-tz = "0.4"
dotenv = "0.12"
env_logger = "0.5"
failure = "0.1"
failure_derive = "0.1"
futures = "0.1"
futures-state-stream = "0.2"
log = "0.4"
rand = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
time = "0.1"
telebot = "^0.2.9"
tokio-core = "0.1"
tokio-reactor = "0.1"
tokio-timer = "0.2"
[dependencies.tokio-postgres]
version = "0.3"
features = ["with-chrono"]
[dependencies.event-web]
version = "0.1"
path = "./event-web"