32 lines
890 B
TOML
32 lines
890 B
TOML
[package]
|
|
authors = ["Jimmy Cuadra <jimmy@jimmycuadra.com>"]
|
|
categories = ["api-bindings", "web-programming"]
|
|
description = "An abstraction for Matrix API endpoints."
|
|
documentation = "https://docs.rs/ruma-api"
|
|
homepage = "https://github.com/ruma/ruma-api"
|
|
keywords = ["matrix", "chat", "messaging", "ruma"]
|
|
license = "MIT"
|
|
name = "ruma-api"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ruma/ruma-api"
|
|
version = "0.11.2"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
http = "0.1.19"
|
|
ruma-api-macros = { path = "ruma-api-macros", optional = true }
|
|
ruma-identifiers = "0.14.0"
|
|
serde = { version = "1.0.102", features = ["derive"], optional = true }
|
|
serde_json = "1.0.41"
|
|
serde_urlencoded = "0.6.1"
|
|
url = { version = "2.1.0", optional = true }
|
|
|
|
[features]
|
|
default = ["with-ruma-api-macros"]
|
|
with-ruma-api-macros = ["ruma-api-macros", "serde", "url"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"ruma-api-macros",
|
|
]
|