32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
authors = ["Damir Jelić <poljar@termina.org.uk>"]
|
|
description = "Collection of common types and imports used in the matrix-sdk"
|
|
edition = "2018"
|
|
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
keywords = ["matrix", "chat", "messaging", "ruma", "nio"]
|
|
license = "Apache-2.0"
|
|
name = "matrix-sdk-common"
|
|
readme = "README.md"
|
|
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
version = "0.3.0"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.50"
|
|
instant = { version = "0.1.9", features = ["wasm-bindgen", "now"] }
|
|
ruma = { version = "0.2.0", features = ["client-api-c"] }
|
|
serde = "1.0.126"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
uuid = { version = "0.8.2", default-features = false, features = ["v4", "serde"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
|
version = "1.7.1"
|
|
default-features = false
|
|
features = ["rt", "sync"]
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
futures = "0.3.15"
|
|
futures-locks = { version = "0.6.0", default-features = false }
|
|
wasm-bindgen-futures = "0.4.24"
|
|
uuid = { version = "0.8.2", default-features = false, features = ["v4", "wasm-bindgen"] }
|