mirror of
https://github.com/stoatchat/rust-a2.git
synced 2026-07-01 21:44:49 -04:00
chore: change crate name for publishing
This commit is contained in:
Generated
+26
-26
@@ -2,32 +2,6 @@
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "a2"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"argparse",
|
||||
"base64",
|
||||
"erased-serde",
|
||||
"http",
|
||||
"http-body-util",
|
||||
"hyper",
|
||||
"hyper-rustls",
|
||||
"hyper-util",
|
||||
"openssl",
|
||||
"parking_lot",
|
||||
"pem",
|
||||
"ring",
|
||||
"rustls",
|
||||
"rustls-pemfile",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "addr2line"
|
||||
version = "0.21.0"
|
||||
@@ -560,6 +534,32 @@ dependencies = [
|
||||
"bitflags",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "revolt_a2"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"argparse",
|
||||
"base64",
|
||||
"erased-serde",
|
||||
"http",
|
||||
"http-body-util",
|
||||
"hyper",
|
||||
"hyper-rustls",
|
||||
"hyper-util",
|
||||
"openssl",
|
||||
"parking_lot",
|
||||
"pem",
|
||||
"ring",
|
||||
"rustls",
|
||||
"rustls-pemfile",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ring"
|
||||
version = "0.17.8"
|
||||
|
||||
+21
-9
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "a2"
|
||||
name = "revolt_a2"
|
||||
version = "0.10.0"
|
||||
authors = [
|
||||
"Harry Bairstow <harry@walletconnect.com>",
|
||||
@@ -7,14 +7,14 @@ authors = [
|
||||
"Sergey Tkachenko <seriy.tkachenko@gmail.com>",
|
||||
]
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
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"
|
||||
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 = "2021"
|
||||
rust-version = "1.60" # set the minimum rust version we can work with.
|
||||
rust-version = "1.60" # set the minimum rust version we can work with.
|
||||
|
||||
[features]
|
||||
default = ["openssl"]
|
||||
@@ -27,15 +27,27 @@ erased-serde = "0.3"
|
||||
serde_json = "1"
|
||||
thiserror = "1"
|
||||
openssl = { version = "0.10", optional = true }
|
||||
hyper = { version = "1.0", default-features = false, features = ["client", "http2"] }
|
||||
hyper-util = { version = "0.1", features = ["client", "http2", "client-legacy", "tokio"] }
|
||||
hyper = { version = "1.0", default-features = false, features = [
|
||||
"client",
|
||||
"http2",
|
||||
] }
|
||||
hyper-util = { version = "0.1", features = [
|
||||
"client",
|
||||
"http2",
|
||||
"client-legacy",
|
||||
"tokio",
|
||||
] }
|
||||
http-body-util = "0.1"
|
||||
http = "1.0"
|
||||
base64 = "0.21"
|
||||
tracing = { version = "0.1", optional = true }
|
||||
pem = { version = "3.0", optional = true }
|
||||
ring = { version = "0.17", features = ["std"], optional = true }
|
||||
hyper-rustls = { version = "0.26.0", default-features = false, features = ["http2", "webpki-roots", "ring"] }
|
||||
hyper-rustls = { version = "0.26.0", default-features = false, features = [
|
||||
"http2",
|
||||
"webpki-roots",
|
||||
"ring",
|
||||
] }
|
||||
rustls-pemfile = "2.1.1"
|
||||
rustls = "0.22.4"
|
||||
parking_lot = "0.12"
|
||||
|
||||
Reference in New Issue
Block a user