matrix-rust-sdk/matrix_sdk/Cargo.toml

84 lines
2.3 KiB
TOML
Raw Normal View History

[package]
authors = ["Damir Jelić <poljar@termina.org.uk>"]
description = "A high level Matrix client-server 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"
readme = "README.md"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
2021-01-05 10:23:18 +00:00
version = "0.2.0"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
2021-01-18 12:38:00 +00:00
default = ["encryption", "sled_cryptostore", "messages", "native-tls"]
2020-05-08 08:13:47 +00:00
messages = ["matrix-sdk-base/messages"]
encryption = ["matrix-sdk-base/encryption", "dashmap"]
2021-01-18 12:38:00 +00:00
sled_cryptostore = ["matrix-sdk-base/sled_cryptostore"]
unstable-synapse-quirks = ["matrix-sdk-base/unstable-synapse-quirks"]
markdown = ["matrix-sdk-base/markdown"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
2020-08-26 13:17:41 +00:00
socks = ["reqwest/socks"]
2021-01-18 12:38:00 +00:00
docs = ["encryption", "sled_cryptostore", "messages"]
[dependencies]
2021-01-04 16:22:09 +00:00
dashmap = { version = "4.0.1", optional = true }
futures = "0.3.8"
2021-01-04 16:22:09 +00:00
http = "0.2.2"
serde_json = "1.0.61"
thiserror = "1.0.23"
tracing = "0.1.22"
url = "2.2.0"
zeroize = "1.2.0"
mime = "0.3.16"
2021-01-05 10:23:18 +00:00
matrix-sdk-common = { version = "0.2.0", path = "../matrix_sdk_common" }
[dependencies.matrix-sdk-base]
2021-01-05 10:23:18 +00:00
version = "0.2.0"
path = "../matrix_sdk_base"
default_features = false
[dependencies.reqwest]
version = "0.11.0"
default_features = false
[dependencies.tracing-futures]
version = "0.2.4"
default-features = false
features = ["std", "std-future"]
2020-07-17 08:01:22 +00:00
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
futures-timer = "3.0.2"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1.0.1"
default-features = false
features = ["fs", "rt"]
[target.'cfg(target_arch = "wasm32")'.dependencies.futures-timer]
version = "3.0.2"
features = ["wasm-bindgen"]
[dev-dependencies]
2021-01-04 16:22:09 +00:00
async-std = { version = "1.8.0", features = ["unstable"] }
2020-07-07 13:52:08 +00:00
dirs = "3.0.1"
2021-01-05 10:23:18 +00:00
matrix-sdk-test = { version = "0.2.0", path = "../matrix_sdk_test" }
tokio = { version = "1.0.1", default-features = false, features = ["rt-multi-thread", "macros"] }
2021-01-04 16:22:09 +00:00
serde_json = "1.0.61"
tracing-subscriber = "0.2.15"
tempfile = "3.1.0"
2021-01-04 16:22:09 +00:00
mockito = "0.28.0"
2020-04-29 08:06:02 +00:00
lazy_static = "1.4.0"
[[example]]
name = "emoji_verification"
required-features = ["encryption"]