matrix-rust-sdk/matrix_sdk/Cargo.toml

83 lines
2.2 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"
version = "0.1.0"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
default = ["encryption", "sqlite_cryptostore", "messages", "native-tls"]
2020-05-08 08:13:47 +00:00
messages = ["matrix-sdk-base/messages"]
encryption = ["matrix-sdk-base/encryption", "dashmap"]
2020-08-13 09:06:26 +00:00
sqlite_cryptostore = ["matrix-sdk-base/sqlite_cryptostore"]
unstable-synapse-quirks = ["matrix-sdk-base/unstable-synapse-quirks"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
2020-08-26 13:17:41 +00:00
socks = ["reqwest/socks"]
docs = ["encryption", "sqlite_cryptostore", "messages"]
[dependencies]
dashmap = { version = "3.11.10", optional = true }
http = "0.2.1"
serde_json = "1.0.59"
2020-10-13 11:01:18 +00:00
thiserror = "1.0.21"
tracing = "0.1.21"
url = "2.1.1"
2020-10-13 11:01:18 +00:00
zeroize = "1.1.1"
mime = "0.3.16"
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
[dependencies.matrix-sdk-base]
version = "0.1.0"
path = "../matrix_sdk_base"
default_features = false
[dependencies.reqwest]
version = "0.10.8"
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 = "0.2.22"
default-features = false
features = ["fs", "blocking"]
[target.'cfg(target_arch = "wasm32")'.dependencies.futures-timer]
version = "3.0.2"
features = ["wasm-bindgen"]
[dev-dependencies]
async-std = { version = "1.6.5", features = ["unstable"] }
2020-07-07 13:52:08 +00:00
dirs = "3.0.1"
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
tokio = { version = "0.2.22", default-features = false, features = ["rt-threaded", "macros"] }
serde_json = "1.0.59"
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"
2020-04-29 08:06:02 +00:00
lazy_static = "1.4.0"
2020-10-13 11:01:18 +00:00
futures = "0.3.6"
[[example]]
name = "emoji_verification"
required-features = ["encryption"]