matrix-rust-sdk/Cargo.toml

37 lines
809 B
TOML
Raw Normal View History

2019-10-20 11:56:46 +00:00
[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]
2019-10-30 17:54:55 +00:00
js_int = "0.1.2"
futures = "0.3.4"
2020-01-11 12:13:30 +00:00
reqwest = "0.10.1"
http = "0.2.0"
async-std = "1.5.0"
ruma-api = "0.13.0"
ruma-client-api = "0.6.0"
ruma-events = "0.15.0"
2019-10-30 17:54:55 +00:00
log = "0.4.8"
2019-10-20 11:56:46 +00:00
2020-01-11 12:13:30 +00:00
ruma-identifiers = "0.14.1"
serde_json = "1.0.48"
2019-10-20 11:56:46 +00:00
serde_urlencoded = "0.6.1"
2020-01-11 12:13:30 +00:00
url = "2.1.1"
2019-10-20 11:56:46 +00:00
[dependencies.serde]
2020-01-11 12:13:30 +00:00
version = "1.0.104"
2019-10-20 11:56:46 +00:00
features = ["derive"]
[dev-dependencies]
tokio = { version = "0.2.11", features = ["full"] }
2020-01-11 12:13:30 +00:00
url = "2.1.1"
mockito = "0.23.3"