forked from reown-com/a2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 883 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
[package]
name = "a2"
version = "0.3.3"
authors = [
"Julius de Bruijn <julius.debruijn@360dialog.com>",
"Sergey Tkachenko <seriy.tkachenko@gmail.com>",
]
license = "MIT"
readme = "README.md"
description = "A native, asynchronous Apple push notification client"
keywords = ["apns", "apple", "push", "async", "http2"]
repository = "https://github.com/pimeys/a2.git"
homepage = "https://github.com/pimeys/a2"
documentation = "https://pimeys.github.io/a2/"
[dependencies]
serde = "1.0"
erased-serde = "0.3"
serde_derive = "1.0"
serde_json = "1.0"
openssl = "0.10"
futures = "0.1"
tokio = "0.1"
tokio-io = "0.1"
tokio-timer = "0.1"
http = "0.1"
base64 = "0.9"
time = "0.1"
crossbeam = "0.3"
log = "0.4"
pretty_env_logger = "0.2"
indoc = "0.2"
hyper = "0.12"
hyper-alpn = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dev-dependencies]
argparse = "0.2"