65 lines
1.9 KiB
TOML
65 lines
1.9 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.3.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["docs"]
|
|
rustdoc-args = ["--cfg", "feature=\"docs\""]
|
|
|
|
[features]
|
|
default = []
|
|
sled_cryptostore = ["sled"]
|
|
docs = ["sled_cryptostore"]
|
|
|
|
[dependencies]
|
|
matrix-qrcode = { version = "0.1.0", path = "../matrix_qrcode" }
|
|
matrix-sdk-common = { version = "0.3.0", path = "../matrix_sdk_common" }
|
|
ruma = { version = "0.2.0", features = ["client-api-c", "unstable-pre-spec"] }
|
|
|
|
olm-rs = { version = "1.0.1", features = ["serde"] }
|
|
getrandom = "0.2.3"
|
|
serde = { version = "1.0.126", features = ["derive", "rc"] }
|
|
serde_json = "1.0.64"
|
|
zeroize = { version = "1.3.0", features = ["zeroize_derive"] }
|
|
|
|
# Misc dependencies
|
|
futures = "0.3.15"
|
|
sled = { version = "0.34.6", optional = true }
|
|
thiserror = "1.0.25"
|
|
tracing = "0.1.26"
|
|
atomic = "0.5.0"
|
|
dashmap = "4.0.2"
|
|
sha2 = "0.9.5"
|
|
aes-gcm = "0.9.2"
|
|
aes = { version = "0.7.4", features = ["ctr"] }
|
|
pbkdf2 = { version = "0.8.0", default-features = false }
|
|
hmac = "0.11.0"
|
|
base64 = "0.13.0"
|
|
byteorder = "1.4.3"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.7.1", default-features = false, features = ["rt-multi-thread", "macros"] }
|
|
proptest = "1.0.0"
|
|
serde_json = "1.0.64"
|
|
tempfile = "3.2.0"
|
|
http = "0.2.4"
|
|
matrix-sdk-test = { version = "0.3.0", path = "../matrix_sdk_test" }
|
|
indoc = "1.0.3"
|
|
criterion = { version = "0.3.4", features = ["async", "async_tokio", "html_reports"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dev-dependencies]
|
|
pprof = { version = "0.4.3", features = ["flamegraph"] }
|
|
|
|
[[bench]]
|
|
name = "crypto_bench"
|
|
harness = false
|
|
required-features = ["sled_cryptostore"]
|