[package] authors = ["Damir Jelić "] description = "The base component to build a Matrix client library." edition = "2018" homepage = "https://github.com/matrix-org/matrix-rust-sdk" keywords = ["matrix", "chat", "messaging", "ruma", "nio"] license = "Apache-2.0" name = "matrix-sdk-base" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" # This isn't yet supported by the stable cargo, we'll enable it when it is. # rust-version = "1.54" version = "0.4.1" [package.metadata.docs.rs] features = ["docs"] rustdoc-args = ["--cfg", "feature=\"docs\""] [features] default = [] encryption = ["matrix-sdk-crypto"] qrcode = ["matrix-sdk-crypto/qrcode"] sled_state_store = ["sled", "pbkdf2", "hmac", "sha2", "rand", "chacha20poly1305"] sled_cryptostore = ["matrix-sdk-crypto/sled_cryptostore"] docs = ["encryption", "sled_cryptostore"] [dependencies] chacha20poly1305 = { version = "0.9.0", optional = true } dashmap = "4.0.2" futures = "0.3.15" hmac = { version = "0.11.0", optional = true } lru = "0.6.5" matrix-sdk-common = { version = "0.4.0", path = "../matrix-sdk-common" } matrix-sdk-crypto = { version = "0.4.0", path = "../matrix-sdk-crypto", optional = true } pbkdf2 = { version = "0.9.0", default-features = false, optional = true } rand = { version = "0.8.4", optional = true } ruma = { version = "0.4.0", features = ["client-api-c", "unstable-pre-spec"] } serde = { version = "1.0.126", features = ["rc"] } serde_json = "1.0.64" sha2 = { version = "0.9.5", optional = true } sled = { version = "0.34.6", optional = true } thiserror = "1.0.25" tracing = "0.1.26" zeroize = { version = "1.3.0", features = ["zeroize_derive"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio] version = "1.7.1" default-features = false features = ["sync", "fs"] [dev-dependencies] http = "0.2.4" matrix-sdk-test = { version = "0.4.0", path = "../matrix-sdk-test" } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] atty = "0.2.14" clap = "2.33.3" rustyline = "9.0.0" rustyline-derive = "0.5.0" syntect = "4.5.0" tokio = { version = "1.7.1", default-features = false, features = ["rt-multi-thread", "macros"] } tempfile = "3.2.0" [target.'cfg(target_arch = "wasm32")'.dev-dependencies] wasm-bindgen-test = "0.3.24"