53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
authors = ["Damir Jelić <poljar@termina.org.uk>"]
|
|
description = "Matrix encryption 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-crypto"
|
|
readme = "README.md"
|
|
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
version = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
sqlite-cryptostore = ["sqlx"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.36"
|
|
|
|
matrix-sdk-common-macros = { version = "0.1.0", path = "../matrix_sdk_common_macros" }
|
|
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
|
|
|
olm-rs = { version = "0.5.0", features = ["serde"] }
|
|
serde = { version = "1.0.114", features = ["derive"] }
|
|
serde_json = "1.0.56"
|
|
cjson = "0.1.1"
|
|
zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
|
|
url = "2.1.1"
|
|
|
|
# Misc dependencies
|
|
thiserror = "1.0.20"
|
|
tracing = "0.1.16"
|
|
atomic = "0.4.6"
|
|
dashmap = "3.11.7"
|
|
|
|
[dependencies.tracing-futures]
|
|
version = "0.2.4"
|
|
default-features = false
|
|
features = ["std", "std-future"]
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx]
|
|
version = "0.3.5"
|
|
optional = true
|
|
default-features = false
|
|
features = ["runtime-tokio", "sqlite"]
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "0.2.21", features = ["rt-threaded", "macros"] }
|
|
serde_json = "1.0.56"
|
|
tempfile = "3.1.0"
|
|
http = "0.2.1"
|
|
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
|