Files
rust-a2/Cargo.toml
T
2022-08-15 10:24:55 +01:00

37 lines
916 B
TOML

[package]
name = "a2"
version = "0.6.2"
authors = [
"Harry Bairstow <harry@walletconnect.com>",
"Julius de Bruijn <julius@nauk.io>",
"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/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"] }
hyper-alpn = "0.3"
[dev-dependencies]
argparse = "0.2"
pretty_env_logger = "0.4"
indoc = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }