-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 882 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
31
32
[package]
name = "apns2"
version = "0.1.0"
authors = ["Sergey Tkachenko <[email protected]>", "Julius de Bruijn <[email protected]>"]
license = "MIT"
readme = "README.md"
description = "HTTP/2 Apple Push Notification Service for Rust"
keywords = ["apns", "apple", "push", "notification", "http2", "http/2"]
repository = "https://github.com/polyitan/apns2.git"
homepage = "https://github.com/polyitan/apns2"
documentation = "https://github.com/polyitan/apns2"
[dependencies]
rustc-serialize = "~0.3"
time = "~0.1"
[dependencies.openssl]
default-features = true
version = "~0.7"
features = ["tlsv1_2", "npn", "alpn"]
[dependencies.solicit]
git = "https://github.com/pimeys/solicit"
default-features = true
features = ["tls"]
[dependencies.btls]
features = ["gnutls-ecdsa"]
git = "https://gitlab.com/ilari_l/btls.git"
[dev-dependencies]
argparse = "*"