2020-04-29 07:48:00 +00:00
|
|
|
[package]
|
2020-06-25 00:30:53 +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]
|
2020-07-17 08:01:22 +00:00
|
|
|
instant = { version = "0.1.6", features = ["wasm-bindgen", "now"] }
|
2020-08-11 14:54:58 +00:00
|
|
|
js_int = "0.1.9"
|
2020-07-11 14:24:36 +00:00
|
|
|
|
|
|
|
[dependencies.ruma]
|
2020-07-31 18:35:27 +00:00
|
|
|
version = "0.0.1"
|
|
|
|
git = "https://github.com/ruma/ruma"
|
2020-08-10 10:39:00 +00:00
|
|
|
rev = "9cf552f36186eedff44ebe0c6a32d598315f5860"
|
2020-07-11 14:24:36 +00:00
|
|
|
features = ["client-api"]
|
2020-06-20 21:18:20 +00:00
|
|
|
|
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-08-11 14:54:58 +00:00
|
|
|
version = "0.2.22"
|
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"] }
|