matrix-rust-sdk/crates/matrix-sdk/Cargo.toml

112 lines
3.0 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"
# This isn't yet supported by the stable cargo, we'll enable it when it is.
# rust-version = "1.54"
2021-09-13 09:38:20 +00:00
version = "0.4.1"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
default = ["encryption", "qrcode", "sled_cryptostore", "sled_state_store", "require_auth_for_profile_requests", "native-tls"]
encryption = ["matrix-sdk-base/encryption"]
qrcode = ["encryption", "matrix-sdk-base/qrcode"]
sled_state_store = ["matrix-sdk-base/sled_state_store"]
2021-01-18 12:38:00 +00:00
sled_cryptostore = ["matrix-sdk-base/sled_cryptostore"]
markdown = ["ruma/markdown"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
2020-08-26 13:17:41 +00:00
socks = ["reqwest/socks"]
2021-03-23 14:30:40 +00:00
sso_login = ["warp", "rand", "tokio-stream"]
require_auth_for_profile_requests = []
appservice = ["ruma/appservice-api-s", "ruma/appservice-api-helper", "ruma/rand"]
2021-03-23 14:30:40 +00:00
docs = ["encryption", "sled_cryptostore", "sled_state_store", "sso_login"]
[dependencies]
2021-06-22 09:36:33 +00:00
anyhow = { version = "1.0.42", optional = true }
bytes = "1.0.1"
dashmap = "4.0.2"
event-listener = "2.5.1"
2021-06-21 14:42:38 +00:00
futures = "0.3.15"
http = "0.2.4"
matrix-sdk-common = { version = "0.4.0", path = "../matrix-sdk-common" }
mime = "0.3.16"
rand = { version = "0.8.4", optional = true }
2021-06-22 09:36:33 +00:00
serde = "1.0.126"
2021-06-21 14:42:38 +00:00
serde_json = "1.0.64"
thiserror = "1.0.25"
tracing = "0.1.26"
url = "2.2.2"
zeroize = "1.3.0"
[dependencies.matrix-sdk-base]
2021-09-10 17:54:58 +00:00
version = "0.4.0"
path = "../matrix-sdk-base"
default_features = false
[dependencies.reqwest]
2021-06-21 14:42:38 +00:00
version = "0.11.3"
default_features = false
2021-06-07 14:53:56 +00:00
[dependencies.ruma]
2021-09-10 08:08:48 +00:00
version = "0.4.0"
features = ["client-api-c", "compat", "unstable-pre-spec"]
2021-06-07 14:53:56 +00:00
2021-03-23 14:30:40 +00:00
[dependencies.tokio-stream]
2021-06-21 14:42:38 +00:00
version = "0.1.6"
2021-03-23 14:30:40 +00:00
features = ["net"]
optional = true
[dependencies.tracing-futures]
version = "0.2.5"
default-features = false
features = ["std", "std-future"]
2021-03-23 14:30:40 +00:00
[dependencies.warp]
2021-06-21 14:42:38 +00:00
version = "0.3.1"
2021-03-23 14:30:40 +00:00
default-features = false
optional = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.backoff]
version = "0.3.0"
features = ["tokio"]
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]
2021-06-21 14:42:38 +00:00
version = "1.7.1"
default-features = false
features = ["fs", "rt"]
[target.'cfg(target_arch = "wasm32")'.dependencies.futures-timer]
version = "3.0.2"
features = ["wasm-bindgen"]
[dev-dependencies]
anyhow = "1.0"
2021-06-21 14:42:38 +00:00
dirs = "3.0.2"
lazy_static = "1.4.0"
matches = "0.1.8"
matrix-sdk-test = { version = "0.4.0", path = "../matrix-sdk-test" }
mockito = "0.30.0"
2021-06-21 14:42:38 +00:00
serde_json = "1.0.64"
2021-01-25 14:47:51 +00:00
tempfile = "3.2.0"
tokio = { version = "1.7.1", default-features = false, features = ["rt-multi-thread", "macros"] }
tracing-subscriber = "0.2.18"
[[example]]
name = "emoji_verification"
required-features = ["encryption"]