* Add a `feature = "compat"` workaround for Element failing on `GET /_matrix/client/r0/account/3pid` response if the optional `threepids` field is missing -----BEGIN PGP SIGNATURE----- iIwEABYIADQWIQSYRl0lv78dXawPPq7MFU3g4wt8ZwUCYUnGGxYcanBsYXR0ZStn aXRAcG9zdGVvLmRlAAoJEMwVTeDjC3xnXEAA/jR+Jn+XK1TFLY4OhLym8VN+4mxb YLTg0p5mAsyqSXB8AQCXGpCjyYzV1bBFYRx8J2KMTTt0zWwqYRbsCsrUyP2vDQ== =LUOM -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iIwEABYIADQWIQSYRl0lv78dXawPPq7MFU3g4wt8ZwUCYUnHmxYcanBsYXR0ZStn aXRAcG9zdGVvLmRlAAoJEMwVTeDjC3xnn00A/04e0hPc/cnl5Lzb8Tvy6Xmzc/6W hmRfZdcABHGX0eV7AP4xO/LAeS5qVMfwCo8X0ypPLul+PK9faWgeR0O337ZjAw== =Skqn -----END PGP SIGNATURE----- Merge tag 'ruma-client-api-0.12.3' ruma-client-api 0.12.3 * Add a `feature = "compat"` workaround for Element failing on `GET /_matrix/client/r0/account/3pid` response if the optional `threepids` field is missing
37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
authors = ["Wim de With <wf@dewith.io>"]
|
|
categories = ["api-bindings", "web-programming"]
|
|
description = "Types for the endpoints in the Matrix application service API."
|
|
homepage = "https://www.ruma.io/"
|
|
keywords = ["matrix", "chat", "messaging", "ruma"]
|
|
license = "MIT"
|
|
name = "ruma-appservice-api"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ruma/ruma"
|
|
version = "0.4.0"
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
unstable-exhaustive-types = []
|
|
helper = ["ruma-client-api", "tracing"]
|
|
client = []
|
|
server = []
|
|
|
|
[dependencies]
|
|
ruma-api = { version = "0.18.4", path = "../ruma-api" }
|
|
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", features = ["client"], optional = true }
|
|
ruma-common = { version = "0.6.0", path = "../ruma-common" }
|
|
ruma-events = { version = "0.24.6", path = "../ruma-events" }
|
|
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }
|
|
ruma-serde = { version = "0.5.0", path = "../ruma-serde" }
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
|
serde_json = "1.0.61"
|
|
tracing = { version = "0.1.25", optional = true }
|
|
|
|
[dev-dependencies]
|
|
matches = "0.1.8"
|
|
serde_yaml = "0.8.17"
|