43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
authors = [
|
|
"Jimmy Cuadra <jimmy@jimmycuadra.com>",
|
|
"Jonas Platte <jplatte@posteo.de>",
|
|
]
|
|
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.16.0-rc.1"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
http = "0.2.1"
|
|
percent-encoding = { version = "2.1.0", optional = true }
|
|
ruma-api-macros = { version = "=0.16.0-rc.1", path = "ruma-api-macros", optional = true }
|
|
ruma-identifiers = "0.15.1"
|
|
serde = { version = "1.0.106", features = ["derive"], optional = true }
|
|
serde_json = "1.0.51"
|
|
serde_urlencoded = "0.6.1"
|
|
strum = "0.18.0"
|
|
|
|
[dev-dependencies]
|
|
ruma-events = "0.19.0"
|
|
|
|
[features]
|
|
default = ["with-ruma-api-macros"]
|
|
with-ruma-api-macros = [
|
|
"percent-encoding",
|
|
"ruma-api-macros",
|
|
"serde",
|
|
]
|
|
|
|
[workspace]
|
|
members = [
|
|
"ruma-api-macros",
|
|
]
|