SchildiChat-android/rust-sdk/Cargo.toml

40 lines
807 B
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-04-12 15:02:47 +02:00
serde_json = "1.0.64"
http = "0.2.4"
2021-02-16 15:13:31 +01:00
2021-04-12 15:02:47 +02:00
thiserror = "1.0.24"
tracing = "0.1.25"
tracing-subscriber = "0.2.17"
uniffi = "0.8.0"
[dependencies.js_int]
version = "0.2.0"
features = ["lax_deserialize"]
[dependencies.matrix-sdk-common]
git = "https://github.com/matrix-org/matrix-rust-sdk/"
branch = "encryption-info"
[dependencies.matrix-sdk-crypto]
git = "https://github.com/matrix-org/matrix-rust-sdk/"
branch = "encryption-info"
features = ["sled_cryptostore"]
2021-02-16 15:13:31 +01:00
[dependencies.tokio]
2021-04-12 15:02:47 +02:00
version = "1.4.0"
2021-02-16 15:13:31 +01:00
default_features = false
features = ["rt-multi-thread"]
[build-dependencies]
2021-04-12 15:02:47 +02:00
uniffi_build = "0.8.0"