Some checks failed
renovate/stability-days Updates have not met minimum release age requirement
Dependency builds / Build web (pull_request) Successful in 7m29s
Dependency builds / Test native MTP (pull_request) Failing after 6m9s
Dependency builds / Build desktop (pull_request) Successful in 13m59s
Dependency builds / Build mobile (pull_request) Failing after 11m30s
48 lines
1.6 KiB
TOML
48 lines
1.6 KiB
TOML
[package]
|
|
name = "tensamin"
|
|
version = "0.0.0"
|
|
description = "Privacy focused messanger"
|
|
authors = ["methanium"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "mobile_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { git = "https://github.com/tauri-apps/tauri", rev = "dd6befda925845fc74ca595d6d42de6c49580dd8", features = [] }
|
|
|
|
[dependencies]
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "sync", "time"] }
|
|
mtp = { git = "https://git.methanium.net/Methanium/mtp.git", rev = "a5c8d4f0c898c78351e9d54124886c86e789a22a", features = ["client", "crypto"] }
|
|
webpki-root-certs = "1"
|
|
tauri-plugin-deep-link = "2"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-log = "2"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies.tauri]
|
|
version = "2"
|
|
features = []
|
|
default-features = true
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies.tauri]
|
|
version = "2"
|
|
features = []
|
|
default-features = true
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
jni = "0.22"
|
|
|
|
[patch.crates-io.tauri]
|
|
git = "https://github.com/tauri-apps/tauri"
|
|
rev = "4af26a3f7f8b692d62cca549bbacd93f5ce90b41"
|