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-08-15 01:09:13 +00:00
|
|
|
assign = "1.1.0"
|
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-09-12 01:19:22 +00:00
|
|
|
rev = "4a9b1aeb3c87bd8574391d7084ec5bf109f7d363"
|
2020-09-17 12:16:43 +00:00
|
|
|
features = ["client-api", "unstable-pre-spec", "unstable-exhaustive-types"]
|
2020-06-20 21:18:20 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2020-09-17 12:16:43 +00:00
|
|
|
uuid = { version = "0.8.1", 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
|
|
|
|
features = ["sync", "time", "fs"]
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2020-09-08 05:28:32 +00:00
|
|
|
futures-locks = { version = "0.6.0", default-features = false }
|
2020-05-12 12:28:01 +00:00
|
|
|
uuid = { version = "0.8.1", features = ["v4", "wasm-bindgen"] }
|