27 lines
709 B
TOML
27 lines
709 B
TOML
[package]
|
|
categories = ["api-bindings", "web-programming"]
|
|
description = "Utilities for implementing Matrix server applications."
|
|
homepage = "https://ruma.dev/"
|
|
keywords = ["matrix", "chat", "messaging", "ruma"]
|
|
license = "MIT"
|
|
name = "ruma-server-util"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ruma/ruma"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
rust-version = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
headers = "0.4.0"
|
|
http = { workspace = true }
|
|
http-auth = { version = "0.1.9", default-features = false }
|
|
ruma-common = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber = "0.3.16"
|