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-04-12 16:02:47 +03:00
|
|
|
serde_json = "1.0.64"
|
|
|
|
http = "0.2.4"
|
2021-02-16 17:13:31 +03:00
|
|
|
|
2021-04-12 16:02:47 +03:00
|
|
|
thiserror = "1.0.24"
|
|
|
|
tracing = "0.1.25"
|
|
|
|
tracing-subscriber = "0.2.17"
|
|
|
|
uniffi = "0.8.0"
|
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]
|
2021-04-12 16:02:47 +03:00
|
|
|
version = "1.4.0"
|
2021-02-16 17:13:31 +03:00
|
|
|
default_features = false
|
|
|
|
features = ["rt-multi-thread"]
|
|
|
|
|
2021-02-09 17:41:01 +03:00
|
|
|
[build-dependencies]
|
2021-04-12 16:02:47 +03:00
|
|
|
uniffi_build = "0.8.0"
|