fix: docs.rs (#1654)

* fix: docs.rs

* fix updater docs

* update build script
pull/1656/head
Lucas Fernandes Nogueira 10 months ago committed by GitHub
parent 7b053ba6f6
commit 584eb61f16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -12,7 +12,7 @@ links = "tauri-plugin-barcode-scanner"
[package.metadata.docs.rs] [package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ] rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ] rustdoc-args = [ "--cfg", "docsrs" ]
targets = ["x86_64-linux-android"] targets = [ "x86_64-linux-android" ]
[build-dependencies] [build-dependencies]
tauri-plugin = { workspace = true, features = [ "build" ] } tauri-plugin = { workspace = true, features = [ "build" ] }

@ -12,16 +12,14 @@ const COMMANDS: &[&str] = &[
]; ];
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.try_build() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
// when building documentation for Android the plugin build result is irrelevant to the crate itself if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { result.unwrap();
std::process::exit(1);
}
} }
} }

@ -11,6 +11,7 @@ links = "tauri-plugin-biometric"
[package.metadata.docs.rs] [package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ] rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ] rustdoc-args = [ "--cfg", "docsrs" ]
targets = [ "x86_64-linux-android" ]
[build-dependencies] [build-dependencies]
tauri-plugin = { workspace = true, features = [ "build" ] } tauri-plugin = { workspace = true, features = [ "build" ] }

@ -5,9 +5,14 @@
const COMMANDS: &[&str] = &["authenticate", "status"]; const COMMANDS: &[&str] = &["authenticate", "status"];
fn main() { fn main() {
tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.build(); .try_build();
// when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
result.unwrap();
}
} }

@ -12,16 +12,14 @@ const COMMANDS: &[&str] = &[
]; ];
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.try_build() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
// when building documentation for Android the plugin build result is irrelevant to the crate itself if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { result.unwrap();
std::process::exit(1);
}
} }
} }

@ -32,15 +32,14 @@ fn intent_filter(domain: &AssociatedDomain) -> String {
} }
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.try_build() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
std::process::exit(1); result.unwrap();
}
} }
if let Some(config) = tauri_plugin::plugin_config::<Config>("deep-link") { if let Some(config) = tauri_plugin::plugin_config::<Config>("deep-link") {

@ -5,16 +5,14 @@
const COMMANDS: &[&str] = &["open", "save", "message", "ask", "confirm"]; const COMMANDS: &[&str] = &["open", "save", "message", "ask", "confirm"];
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.try_build() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
// when building documentation for Android the plugin build result is irrelevant to the crate itself if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { result.unwrap();
std::process::exit(1);
}
} }
} }

@ -11,6 +11,7 @@ links = "tauri-plugin-geolocation"
[package.metadata.docs.rs] [package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ] rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ] rustdoc-args = [ "--cfg", "docsrs" ]
targets = [ "x86_64-linux-android" ]
[build-dependencies] [build-dependencies]
tauri-plugin = { workspace = true, features = [ "build" ] } tauri-plugin = { workspace = true, features = [ "build" ] }

@ -11,16 +11,14 @@ const COMMANDS: &[&str] = &[
]; ];
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.try_build() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
// when building documentation for Android the plugin build result is irrelevant to the crate itself if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { result.unwrap();
std::process::exit(1);
}
} }
} }

@ -11,6 +11,7 @@ links = "tauri-plugin-haptics"
[package.metadata.docs.rs] [package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ] rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ] rustdoc-args = [ "--cfg", "docsrs" ]
targets = [ "x86_64-linux-android" ]
[build-dependencies] [build-dependencies]
tauri-plugin = { workspace = true, features = [ "build" ] } tauri-plugin = { workspace = true, features = [ "build" ] }

@ -10,16 +10,14 @@ const COMMANDS: &[&str] = &[
]; ];
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.try_build() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
// when building documentation for Android the plugin build result is irrelevant to the crate itself if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { result.unwrap();
std::process::exit(1);
}
} }
} }

@ -11,6 +11,7 @@ links = "tauri-plugin-nfc"
[package.metadata.docs.rs] [package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ] rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ] rustdoc-args = [ "--cfg", "docsrs" ]
targets = [ "x86_64-linux-android" ]
[build-dependencies] [build-dependencies]
tauri-plugin = { workspace = true, features = [ "build" ] } tauri-plugin = { workspace = true, features = [ "build" ] }

@ -5,11 +5,16 @@
const COMMANDS: &[&str] = &["is_available", "write", "scan"]; const COMMANDS: &[&str] = &["is_available", "write", "scan"];
fn main() { fn main() {
tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.build(); .try_build();
// when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
result.unwrap();
}
// TODO: triple check if this can reference the plugin's xml as it expects rn // TODO: triple check if this can reference the plugin's xml as it expects rn
// TODO: This has to be configurable if we want to support handling nfc tags when the app is not open. // TODO: This has to be configurable if we want to support handling nfc tags when the app is not open.

@ -22,16 +22,14 @@ const COMMANDS: &[&str] = &[
]; ];
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.try_build() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
// when building documentation for Android the plugin build result is irrelevant to the crate itself if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { result.unwrap();
std::process::exit(1);
}
} }
} }

@ -12,6 +12,8 @@ links = "tauri-plugin-updater"
[package.metadata.docs.rs] [package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ] rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ] rustdoc-args = [ "--cfg", "docsrs" ]
no-default-features = true
features = [ "zip" ]
[build-dependencies] [build-dependencies]
tauri-plugin = { workspace = true, features = [ "build" ] } tauri-plugin = { workspace = true, features = [ "build" ] }

@ -5,16 +5,14 @@
const COMMANDS: &[&str] = &["execute"]; const COMMANDS: &[&str] = &["execute"];
fn main() { fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS) let result = tauri_plugin::Builder::new(COMMANDS)
.global_api_script_path("./api-iife.js") .global_api_script_path("./api-iife.js")
.android_path("android") .android_path("android")
.ios_path("ios") .ios_path("ios")
.run() .try_build();
{
println!("{error:#}"); // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
// when building documentation for Android the plugin build result is irrelevant to the crate itself if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) { result.unwrap();
std::process::exit(1);
}
} }
} }

Loading…
Cancel
Save