55 lines
1.4 KiB
TOML
55 lines
1.4 KiB
TOML
|
[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-base"
|
||
|
readme = "README.md"
|
||
|
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
||
|
version = "0.1.0"
|
||
|
|
||
|
[features]
|
||
|
default = ["encryption", "sqlite-cryptostore"]
|
||
|
messages = []
|
||
|
encryption = ["matrix-sdk-crypto"]
|
||
|
sqlite-cryptostore = ["matrix-sdk-crypto/sqlite-cryptostore"]
|
||
|
|
||
|
[dependencies]
|
||
|
dirs = "2.0.2"
|
||
|
futures = "0.3.4"
|
||
|
reqwest = "0.10.4"
|
||
|
http = "0.2.1"
|
||
|
url = "2.1.1"
|
||
|
async-trait = "0.1.30"
|
||
|
serde = "1.0.106"
|
||
|
serde_json = "1.0.52"
|
||
|
uuid = { version = "0.8.1", features = ["v4"] }
|
||
|
|
||
|
matrix-sdk-common = { path = "../matrix_sdk_common" }
|
||
|
matrix-sdk-crypto = { path = "../matrix_sdk_crypto", optional = true }
|
||
|
|
||
|
# Misc dependencies
|
||
|
thiserror = "1.0.16"
|
||
|
tracing = "0.1.13"
|
||
|
|
||
|
[dependencies.tracing-futures]
|
||
|
version = "0.2.4"
|
||
|
default-features = false
|
||
|
features = ["std", "std-future"]
|
||
|
|
||
|
[dependencies.tokio]
|
||
|
version = "0.2.20"
|
||
|
default-features = false
|
||
|
features = ["sync", "time", "fs"]
|
||
|
|
||
|
[dev-dependencies]
|
||
|
tokio = { version = "0.2.20", features = ["rt-threaded", "macros"] }
|
||
|
ruma-identifiers = { version = "0.16.1", features = ["rand"] }
|
||
|
serde_json = "1.0.52"
|
||
|
tracing-subscriber = "0.2.5"
|
||
|
tempfile = "3.1.0"
|
||
|
mockito = "0.25.1"
|
||
|
lazy_static = "1.4.0"
|