2020-04-29 07:48:00 +00:00
|
|
|
[package]
|
2020-06-20 21:18:20 +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-06-20 21:18:20 +00:00
|
|
|
js_int = "0.1.5"
|
|
|
|
|
2020-06-25 00:30:53 +00:00
|
|
|
ruma = { git = "https://github.com/ruma/ruma", features = ["client-api"] }
|
2020-06-20 21:18:20 +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"] }
|