47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
categories = ["api-bindings", "web-programming"]
|
|
description = "Types for the endpoints in the Matrix client-server API."
|
|
homepage = "https://www.ruma.io/"
|
|
keywords = ["matrix", "chat", "messaging", "ruma"]
|
|
license = "MIT"
|
|
name = "ruma-client-api"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ruma/ruma"
|
|
version = "0.16.1"
|
|
edition = "2021"
|
|
rust-version = "1.64"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
compat = []
|
|
unstable-exhaustive-types = ["ruma-common/unstable-exhaustive-types"]
|
|
unstable-msc2246 = []
|
|
unstable-msc2666 = []
|
|
unstable-msc2448 = []
|
|
unstable-msc2654 = []
|
|
unstable-msc2677 = []
|
|
unstable-msc2965 = []
|
|
unstable-msc2967 = []
|
|
unstable-msc3488 = []
|
|
unstable-msc3575 = []
|
|
client = []
|
|
server = []
|
|
|
|
[dependencies]
|
|
assign = { workspace = true }
|
|
bytes = "1.0.1"
|
|
http = { workspace = true }
|
|
js_int = { workspace = true, features = ["serde"] }
|
|
js_option = "0.1.1"
|
|
maplit = { workspace = true }
|
|
ruma-common = { workspace = true, features = ["api", "events"] }
|
|
serde = { workspace = true }
|
|
serde_html_form = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|