Create empty ruma-push-gateway-api crate
This commit is contained in:
parent
baf84d5581
commit
63758e89ec
0
ruma-push-gateway-api/CHANGELOG.md
Normal file
0
ruma-push-gateway-api/CHANGELOG.md
Normal file
14
ruma-push-gateway-api/Cargo.toml
Normal file
14
ruma-push-gateway-api/Cargo.toml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[package]
|
||||||
|
name = "ruma-push-gateway-api"
|
||||||
|
version = "0.0.0"
|
||||||
|
authors = ["Jonas Platte <jplatte@posteo.de>"]
|
||||||
|
description = "Types for the endpoints in the Matrix push gateway API."
|
||||||
|
homepage = "https://www.ruma.io/"
|
||||||
|
keywords = ["matrix", "chat", "messaging", "ruma"]
|
||||||
|
license = "MIT"
|
||||||
|
readme = "README.md"
|
||||||
|
repository = "https://github.com/ruma/ruma"
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
|
19
ruma-push-gateway-api/LICENSE
Normal file
19
ruma-push-gateway-api/LICENSE
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Copyright (c) 2020 Jonas Platte
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
1
ruma-push-gateway-api/README.md
Normal file
1
ruma-push-gateway-api/README.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# ruma-push-gateway-api
|
1
ruma-push-gateway-api/src/lib.rs
Normal file
1
ruma-push-gateway-api/src/lib.rs
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
@ -22,6 +22,7 @@ appservice-api = ["ruma-api", "ruma-appservice-api", "ruma-events"]
|
|||||||
client-api = ["ruma-api", "ruma-client-api", "ruma-events"]
|
client-api = ["ruma-api", "ruma-client-api", "ruma-events"]
|
||||||
federation-api = ["ruma-api", "ruma-federation-api", "ruma-signatures"]
|
federation-api = ["ruma-api", "ruma-federation-api", "ruma-signatures"]
|
||||||
identity-service-api = ["ruma-api", "ruma-identity-service-api"]
|
identity-service-api = ["ruma-api", "ruma-identity-service-api"]
|
||||||
|
push-gateway-api = ["ruma-api", "ruma-push-gateway-api"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||||
@ -35,3 +36,4 @@ ruma-appservice-api = { version = "=0.2.0-alpha.1", path = "../ruma-appservice-a
|
|||||||
ruma-client-api = { version = "=0.10.0-alpha.1", path = "../ruma-client-api", optional = true }
|
ruma-client-api = { version = "=0.10.0-alpha.1", path = "../ruma-client-api", optional = true }
|
||||||
ruma-federation-api = { version = "0.0.3", path = "../ruma-federation-api", optional = true }
|
ruma-federation-api = { version = "0.0.3", path = "../ruma-federation-api", optional = true }
|
||||||
ruma-identity-service-api = { version = "0.0.0", path = "../ruma-identity-service-api", optional = true }
|
ruma-identity-service-api = { version = "0.0.0", path = "../ruma-identity-service-api", optional = true }
|
||||||
|
ruma-push-gateway-api = { version = "0.0.0", path = "../ruma-push-gateway-api", optional = true }
|
||||||
|
@ -49,4 +49,7 @@ pub mod api {
|
|||||||
#[cfg(feature = "identity-service-api")]
|
#[cfg(feature = "identity-service-api")]
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use ruma_identity_service_api as identity_service;
|
pub use ruma_identity_service_api as identity_service;
|
||||||
|
#[cfg(feature = "identity-service-api")]
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use ruma_push_gateway_api as push_gateway;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user