matrix-rust-sdk/matrix_sdk_base/Cargo.toml

58 lines
1.8 KiB
TOML
Raw Normal View History

[package]
authors = ["Damir Jelić <poljar@termina.org.uk>"]
2020-05-08 11:54:46 +00:00
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"
version = "0.1.0"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
2020-08-13 09:06:26 +00:00
default = ["encryption", "sqlite_cryptostore", "messages"]
messages = []
encryption = ["matrix-sdk-crypto"]
2020-08-13 09:06:26 +00:00
sqlite_cryptostore = ["matrix-sdk-crypto/sqlite_cryptostore"]
unstable-synapse-quirks = ["matrix-sdk-common/unstable-synapse-quirks"]
docs = ["encryption", "sqlite_cryptostore", "messages"]
[dependencies]
2020-10-13 11:01:18 +00:00
async-trait = "0.1.41"
serde = "1.0.117"
serde_json = "1.0.59"
2020-10-13 11:01:18 +00:00
zeroize = "1.1.1"
tracing = "0.1.21"
matrix-sdk-common-macros = { version = "0.1.0", path = "../matrix_sdk_common_macros" }
2020-05-08 11:54:46 +00:00
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
matrix-sdk-crypto = { version = "0.1.0", path = "../matrix_sdk_crypto", optional = true }
# Misc dependencies
2020-10-13 11:01:18 +00:00
thiserror = "1.0.21"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
2020-08-11 14:54:58 +00:00
version = "0.2.22"
default-features = false
features = ["sync", "fs"]
[dev-dependencies]
2020-10-13 11:01:18 +00:00
futures = "0.3.6"
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
http = "0.2.1"
2020-10-13 11:01:18 +00:00
tracing-subscriber = "0.2.13"
tempfile = "3.1.0"
2020-08-11 14:54:58 +00:00
mockito = "0.27.0"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "0.2.22", default-features = false, features = ["rt-threaded", "macros"] }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2020-10-13 11:01:18 +00:00
wasm-bindgen-test = "0.3.18"