2019-10-20 11:56:46 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Damir Jelić <poljar@termina.org.uk"]
|
2020-02-21 16:01:34 +00:00
|
|
|
description = "A high level Matrix client-server library."
|
2019-10-20 11:56:46 +00:00
|
|
|
edition = "2018"
|
2020-02-21 16:01:34 +00:00
|
|
|
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
|
2019-10-20 11:56:46 +00:00
|
|
|
keywords = ["matrix", "chat", "messaging", "ruma", "nio"]
|
|
|
|
license = "MIT"
|
2020-02-21 16:01:34 +00:00
|
|
|
name = "matrix-sdk"
|
2019-10-20 11:56:46 +00:00
|
|
|
readme = "README.md"
|
2020-02-21 16:01:34 +00:00
|
|
|
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
2019-10-20 11:56:46 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
|
2020-02-24 16:19:00 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2020-02-25 16:36:11 +00:00
|
|
|
encryption = ["olm-rs", "serde/derive", "serde_json", "cjson"]
|
2020-02-24 16:19:00 +00:00
|
|
|
|
2019-10-20 11:56:46 +00:00
|
|
|
[dependencies]
|
2019-10-30 17:54:55 +00:00
|
|
|
js_int = "0.1.2"
|
2020-02-21 15:33:08 +00:00
|
|
|
futures = "0.3.4"
|
2020-03-11 10:42:59 +00:00
|
|
|
reqwest = "0.10.4"
|
2020-01-11 12:13:30 +00:00
|
|
|
http = "0.2.0"
|
2020-02-21 15:33:08 +00:00
|
|
|
async-std = "1.5.0"
|
2020-03-14 09:28:46 +00:00
|
|
|
ruma-api = "0.14.0"
|
|
|
|
ruma-client-api = { version = "0.6.0", git = "https://github.com/matrix-org/ruma-client-api/" }
|
|
|
|
ruma-events = "0.17.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"
|
|
|
|
url = "2.1.1"
|
2019-10-20 11:56:46 +00:00
|
|
|
|
2020-03-14 11:22:36 +00:00
|
|
|
olm-rs = { git = "https://gitlab.gnome.org/jhaye/olm-rs/", optional = true, features = ["serde"]}
|
2020-02-24 16:19:00 +00:00
|
|
|
serde = { version = "1.0.104", optional = true, features = ["derive"] }
|
2020-02-25 16:36:11 +00:00
|
|
|
serde_json = { version = "1.0.48", optional = true }
|
|
|
|
cjson = { version = "0.1.0", optional = true }
|
2020-03-11 10:42:59 +00:00
|
|
|
tokio = { version = "0.2.13", default-features = false, features = ["sync"] }
|
2019-10-20 11:56:46 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-03-11 10:42:59 +00:00
|
|
|
tokio = { version = "0.2.13", features = ["full"] }
|
2020-03-02 10:31:03 +00:00
|
|
|
async-std = { version = "1.5.0", features = ["unstable", "attributes"] }
|
2020-01-11 12:13:30 +00:00
|
|
|
url = "2.1.1"
|
2020-02-21 15:33:08 +00:00
|
|
|
mockito = "0.23.3"
|