mirror of
https://github.com/element-hq/element-android
synced 2024-12-19 15:58:27 +03:00
41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[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]
|
|
matrix-sdk-common = { git = "https://github.com/matrix-org/matrix-rust-sdk/"}
|
|
futures = { version = "0.3.12", default_features = false, features = ["executor"] }
|
|
tokio = { version = "1.2.0", default_features = false, features = ["rt-multi-thread", "time"] }
|
|
serde_json = "1.0.62"
|
|
thiserror = "1.0.23"
|
|
http = "0.2.3"
|
|
tracing = "0.1.23"
|
|
tracing-subscriber = "0.2.15"
|
|
once_cell = "1.5.2"
|
|
|
|
[dependencies.matrix-sdk-crypto]
|
|
git = "https://github.com/matrix-org/matrix-rust-sdk/"
|
|
features = ["sled_cryptostore"]
|
|
|
|
[dependencies.uniffi]
|
|
version = "0.7.0"
|
|
git = "https://github.com/mozilla/uniffi-rs"
|
|
branch = "tagged-unions"
|
|
|
|
[dependencies.ruma]
|
|
version = "0.0.2"
|
|
git = "https://github.com/ruma/ruma"
|
|
rev = "d6aa37c848b7f682a98c25b346899e284ffc6df7"
|
|
features = ["client-api", "compat", "unstable-pre-spec", "unstable-exhaustive-types"]
|
|
|
|
[build-dependencies]
|
|
uniffi_build = "0.7.0"
|
|
|
|
[patch.crates-io]
|
|
olm-sys = { git = "https://gitlab.gnome.org/poljar/olm-sys/", branch = "android-cross" }
|