Connect applications to schemes, filetypes, and more on macOS (more to come)
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

This for more

+4 -5
+4 -5
.cargo/config.toml
··· 1 - # Cross-compile to Apple targets from Linux 2 1 [target.aarch64-apple-darwin] 3 2 rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"] 4 3 5 4 [target.x86_64-apple-darwin] 6 5 rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"] 7 6 8 - # Apple target overrides (for the final binary link) 9 - [target.aarch64-apple-darwin.objc-sys] 7 + [target.aarch64-apple-darwin.objc] 10 8 rustc-link-lib = [] 11 9 12 - [target.x86_64-apple-darwin.objc-sys] 10 + [target.x86_64-apple-darwin.objc] 13 11 rustc-link-lib = [] 14 12 15 - [target.x86_64-unknown-linux-gnu.objc-sys] 13 + # Override for the host build script (always compiles as x86_64-unknown-linux-gnu): 14 + [target.x86_64-unknown-linux-gnu.objc] 16 15 rustc-link-lib = [] 17 16 18 17 [target.x86_64-unknown-linux-musl]