2021-02-09 17:41:01 +03:00
|
|
|
[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-02-16 13:18:31 +03:00
|
|
|
serde_json = "1.0.62"
|
2021-02-09 17:41:01 +03:00
|
|
|
http = "0.2.3"
|
2021-02-16 17:13:31 +03:00
|
|
|
|
|
|
|
thiserror = "1.0.23"
|
2021-02-16 13:18:31 +03:00
|
|
|
tracing = "0.1.23"
|
|
|
|
tracing-subscriber = "0.2.15"
|
2021-02-09 17:41:01 +03:00
|
|
|
|
2021-02-17 17:50:49 +03:00
|
|
|
[dependencies.js_int]
|
|
|
|
version = "0.2.0"
|
|
|
|
features = ["lax_deserialize"]
|
|
|
|
|
2021-02-19 17:42:07 +03:00
|
|
|
[dependencies.matrix-sdk-common]
|
|
|
|
git = "https://github.com/matrix-org/matrix-rust-sdk/"
|
|
|
|
branch = "encryption-info"
|
|
|
|
|
2021-02-10 18:31:34 +03:00
|
|
|
[dependencies.matrix-sdk-crypto]
|
|
|
|
git = "https://github.com/matrix-org/matrix-rust-sdk/"
|
2021-02-19 17:42:07 +03:00
|
|
|
branch = "encryption-info"
|
2021-02-10 18:31:34 +03:00
|
|
|
features = ["sled_cryptostore"]
|
|
|
|
|
2021-02-16 17:13:31 +03:00
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.2.0"
|
|
|
|
default_features = false
|
|
|
|
features = ["rt-multi-thread"]
|
|
|
|
|
2021-02-11 13:11:25 +03:00
|
|
|
[dependencies.uniffi]
|
|
|
|
version = "0.7.0"
|
|
|
|
git = "https://github.com/mozilla/uniffi-rs"
|
2021-02-22 18:04:18 +03:00
|
|
|
rev = "f7c8ccda783494ee507ea0f8a61f35b39527394f"
|
2021-02-11 13:11:25 +03:00
|
|
|
|
2021-02-09 17:41:01 +03:00
|
|
|
[build-dependencies]
|
|
|
|
uniffi_build = "0.7.0"
|