36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
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.12.0-alpha.1"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
http = "0.2.0"
|
|
percent-encoding = { version = "2.1.0", optional = true }
|
|
ruma-api-macros = { version = "=0.9.0-alpha.1", path = "ruma-api-macros", optional = true }
|
|
ruma-identifiers = "0.14.0"
|
|
serde = { version = "1.0.103", features = ["derive"], optional = true }
|
|
serde_json = "1.0.42"
|
|
serde_urlencoded = "0.6.1"
|
|
url = { version = "2.1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
ruma-events = "0.15.1"
|
|
|
|
[features]
|
|
default = ["with-ruma-api-macros"]
|
|
with-ruma-api-macros = ["percent-encoding", "ruma-api-macros", "serde", "url"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"ruma-api-macros",
|
|
]
|