2020-04-29 07:48:00 +00:00
|
|
|
[package]
|
2020-06-15 07:47:13 +00:00
|
|
|
authors = ["Damir Jelić <poljar@termina.org.uk>"]
|
2020-05-07 06:51:59 +00:00
|
|
|
description = "Collection of common types used in the matrix-sdk"
|
2020-04-29 07:48:00 +00:00
|
|
|
edition = "2018"
|
|
|
|
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
|
|
keywords = ["matrix", "chat", "messaging", "ruma", "nio"]
|
|
|
|
license = "Apache-2.0"
|
2020-05-07 06:51:59 +00:00
|
|
|
name = "matrix-sdk-common"
|
2020-04-29 07:48:00 +00:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
js_int = "0.1.5"
|
2020-05-15 10:32:36 +00:00
|
|
|
ruma-api = "0.16.1"
|
2020-05-25 12:21:04 +00:00
|
|
|
ruma-client-api = "0.9.0"
|
2020-05-22 13:23:58 +00:00
|
|
|
ruma-events = "0.21.2"
|
2020-05-04 12:06:34 +00:00
|
|
|
ruma-identifiers = "0.16.1"
|
2020-05-22 13:23:58 +00:00
|
|
|
instant = { version = "0.1.4", features = ["wasm-bindgen", "now"] }
|
2020-05-08 14:12:21 +00:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
uuid = { version = "0.8.1", features = ["v4"] }
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
2020-05-15 10:32:36 +00:00
|
|
|
version = "0.2.21"
|
2020-05-08 14:12:21 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["sync", "time", "fs"]
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2020-05-26 20:21:03 +00:00
|
|
|
futures-locks = { git = "https://github.com/asomers/futures-locks", default-features = false }
|
2020-05-12 12:28:01 +00:00
|
|
|
uuid = { version = "0.8.1", features = ["v4", "wasm-bindgen"] }
|