forked from reown-com/a2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 923 Bytes
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 923 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
33
34
35
36
[package]
name = "a2"
version = "0.6.2"
authors = [
"Harry Bairstow <[email protected]>",
"Julius de Bruijn <[email protected]>",
"Sergey Tkachenko <[email protected]>",
]
license = "MIT"
readme = "README.md"
description = "A native, asynchronous Apple push notification client"
keywords = ["apns", "apple", "push", "async", "http2"]
repository = "https://github.com/walletconnect/a2.git"
homepage = "https://github.com/walletconnect/a2"
documentation = "https://docs.rs/a2"
edition = "2018"
[dependencies]
serde = "1"
erased-serde = "0.3"
serde_derive = "1"
serde_json = "1"
thiserror = "1"
openssl = "0.10"
futures = "0.3"
http = "0.2"
base64 = "0.13"
log = "0.4"
hyper = { version = "0.14", features = ["client", "http2", "tcp"] }
hyper-alpn = "0.3"
[dev-dependencies]
argparse = "0.2"
pretty_env_logger = "0.4"
indoc = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }