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"
|
|
|
|
|
2020-09-22 19:03:12 +00:00
|
|
|
[features]
|
|
|
|
unstable-synapse-quirks = ["ruma/unstable-synapse-quirks"]
|
|
|
|
|
2020-04-29 07:48:00 +00:00
|
|
|
[dependencies]
|
2020-10-13 11:01:18 +00:00
|
|
|
instant = { version = "0.1.7", features = ["wasm-bindgen", "now"] }
|
2020-07-11 14:24:36 +00:00
|
|
|
|
|
|
|
[dependencies.ruma]
|
2021-01-04 13:06:07 +00:00
|
|
|
version = "0.0.2"
|
2020-11-23 14:27:43 +00:00
|
|
|
features = ["client-api", "unstable-pre-spec"]
|
2020-06-20 21:18:20 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2020-10-19 16:23:48 +00:00
|
|
|
uuid = { version = "0.8.1", default-features = false, features = ["v4", "serde"] }
|
2020-05-08 14:12:21 +00:00
|
|
|
|
|
|
|
[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
|
2020-10-19 16:23:48 +00:00
|
|
|
features = ["sync"]
|
2020-05-08 14:12:21 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2020-09-08 05:28:32 +00:00
|
|
|
futures-locks = { version = "0.6.0", default-features = false }
|
2020-10-19 16:23:48 +00:00
|
|
|
uuid = { version = "0.8.1", default-features = false, features = ["v4", "wasm-bindgen"] }
|