forked from uonr/telegram-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 730 Bytes
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
[package]
name = "telegram_types"
version = "0.6.0"
authors = ["Quan Brew <t@ioover.net>"]
repository = "https://github.com/quanbrew/telegram-types"
categories = ["api-bindings"]
license = "MIT"
description = "Types in the Telegram Bot API and their deserializers"
readme = "README.md"
edition = "2018"
[badges]
travis-ci = { repository = "quanbrew/telegram-types", branch = "master" }
[features]
high = ["chrono"]
[dependencies]
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
chrono = { version = "0.4", features = ["serde"], optional = true }
[dev-dependencies]
serde_urlencoded = "0.7"
[dev-dependencies.reqwest]
version = "0.11"
features = ["multipart"]
[dev-dependencies.tokio]
version = "1"
features = ["full"]