element-android/rust-sdk/Cargo.toml

51 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "matrix-crypto-bindings"
version = "0.1.0"
authors = ["Damir Jelić <poljar@termina.org.uk>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "lib"]
name = "matrix_crypto"
[dependencies]
2021-05-25 17:13:12 +03:00
serde = "1.0.126"
2021-04-12 16:02:47 +03:00
serde_json = "1.0.64"
http = "0.2.4"
base64 = "0.13.0"
2021-02-16 17:13:31 +03:00
2021-05-25 17:13:12 +03:00
thiserror = "1.0.25"
tracing = "0.1.26"
tracing-subscriber = "0.2.18"
uniffi = "0.14.0"
pbkdf2 = "0.8.0"
sha2 = "0.9.5"
rand = "0.8.4"
hmac = "0.11.0"
[dependencies.js_int]
version = "0.2.1"
features = ["lax_deserialize"]
[dependencies.matrix-sdk-common]
git = "https://github.com/matrix-org/matrix-rust-sdk/"
rev = "2e4d5f25cba03bd26415b91defd6e762e8c31b63"
[dependencies.matrix-sdk-crypto]
git = "https://github.com/matrix-org/matrix-rust-sdk/"
rev = "2e4d5f25cba03bd26415b91defd6e762e8c31b63"
features = ["sled_cryptostore", "qrcode", "backups_v1"]
2021-02-16 17:13:31 +03:00
[dependencies.tokio]
version = "1.7.1"
2021-02-16 17:13:31 +03:00
default_features = false
features = ["rt-multi-thread"]
[dependencies.ruma]
git = "https://github.com/ruma/ruma"
2021-11-09 16:10:24 +03:00
rev = "ac6ecc3e5"
features = ["client-api-c"]
[build-dependencies]
uniffi_build = "0.12.0"