33 lines
768 B
TOML
33 lines
768 B
TOML
[package]
|
|
authors = ["Damir Jelić <poljar@termina.org.uk"]
|
|
description = "A high level Matrix client library."
|
|
edition = "2018"
|
|
homepage = "https://github.com/poljar/nio-rust"
|
|
keywords = ["matrix", "chat", "messaging", "ruma", "nio"]
|
|
license = "MIT"
|
|
name = "matrix-nio"
|
|
readme = "README.md"
|
|
repository = "https://github.com/poljar/nio-rust"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
js_int = "*"
|
|
futures-preview = "0.3.0-alpha.18"
|
|
reqwest = "0.10.0-alpha.1"
|
|
http = "0.1.18"
|
|
ruma-api = "*"
|
|
ruma-client-api = { git = "https://github.com/ruma/ruma-client-api" }
|
|
ruma-events = "0.12"
|
|
|
|
ruma-identifiers = "*"
|
|
serde_json = "1.0.40"
|
|
serde_urlencoded = "0.6.1"
|
|
url = "2.1.0"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.101"
|
|
features = ["derive"]
|
|
|
|
[dev-dependencies]
|
|
tokio = "0.2.0-alpha.6"
|