We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814bdeb commit 3d50568Copy full SHA for 3d50568
cspell.json
@@ -15,7 +15,12 @@
15
"repos",
16
"shrinkwrap",
17
"streetsidesoftware",
18
- "tauri"
+ "tauri",
19
+ "rustc",
20
+ "xctoolchain",
21
+ "rpath",
22
+ "Xswiftc",
23
+ "objc"
24
],
25
"useGitignore": true,
26
"ignorePaths": [
src/macos.rs
@@ -42,9 +42,7 @@ impl<R: Runtime> Iap<R> {
42
let parsed: T = serde_json::from_str(&response)?;
43
Ok(parsed)
44
}
45
- ffi::FFIResult::Err(err) => {
46
- Err(std::io::Error::other(err).into())
47
- }
+ ffi::FFIResult::Err(err) => Err(std::io::Error::other(err).into()),
48
49
50
0 commit comments