ruwuma/Cargo.toml
2019-04-11 22:23:46 -07:00

44 lines
905 B
TOML

[package]
authors = ["Jimmy Cuadra <jimmy@jimmycuadra.com>"]
description = "A Matrix client library."
documentation = "https://docs.rs/ruma-client"
edition = "2018"
homepage = "https://github.com/ruma/ruma-client"
keywords = ["matrix", "chat", "messaging", "ruma"]
license = "MIT"
name = "ruma-client"
readme = "README.md"
repository = "https://github.com/ruma/ruma-client"
version = "0.2.0"
[dependencies]
futures = "0.1.26"
http = "0.1.17"
hyper = "0.12.27"
ruma-api = "0.7.0"
ruma-client-api = "0.3.0"
ruma-identifiers = "0.12.0"
serde_json = "1.0.39"
serde_urlencoded = "0.5.4"
url = "1.7.2"
[dependencies.hyper-tls]
optional = true
version = "0.3.2"
[dependencies.native-tls]
optional = true
version = "0.2.2"
[dependencies.serde]
version = "1.0.90"
features = ["derive"]
[dev-dependencies]
ruma-events = "0.12.0"
tokio = "0.1.18"
[features]
default = ["tls"]
tls = ["hyper-tls", "native-tls"]