Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to Yarn Slinger for dialog #285

Merged
merged 10 commits into from
Jan 29, 2024
Prev Previous commit
Next Next commit
Improve phrasing
  • Loading branch information
janhohenheim committed Jan 29, 2024
commit 9b6a46f6e9058825b263e01e53d1ae5a99f9b460
18 changes: 9 additions & 9 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# NOTE: For maximum performance, build using a nightly compiler
# If you are using rust stable, remove the `"-Z", "share-generics=y"` below.

# Uncomment the following lines for better link time performance. Requires lld on Windows, zld on macOS and clang on Linux.
# You can uncomment some lines for better link time performance. Requires lld on Windows, zld on macOS and clang on Linux.

# [target.x86_64-unknown-linux-gnu]
# Uncomment for better performance. Requires clang.
# linker = "clang"

# Uncomment instead of default rustflags for better performance. Requires lld.
# Use first version for faster compile times. Requires lld.
# rustflags = ["-C", "link-arg=-fuse-ld=lld", "-Z", "share-generics=y"]
rustflags = ["-Z", "share-generics=y"]

# [target.x86_64-unknown-linux-gnu]
# Uncomment for faster compile times. Requires clang.
# linker = "clang"

[target.x86_64-apple-darwin]
# Uncomment instead of default rustflags for better performance. Requires zld via `brew install michaeleisel/zld/zld`
# Uncomment for faster compile times. Requires zld via `brew install michaeleisel/zld/zld`
# rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld"]

[target.aarch64-apple-darwin]
# Uncomment instead of default rustflags for better performance. Requires zld via `brew install michaeleisel/zld/zld`
# Uncomment for faster compile times. Requires zld via `brew install michaeleisel/zld/zld`
# rustflags = ["-C", "link-arg=-fuse-ld=/opt/homebrew/bin/zld"]

[target.x86_64-pc-windows-msvc]
# Uncommentfor better performance. Requires lld via `cargo install -f cargo-binutils` and `rustup component add llvm-tools-preview`
# Uncomment for faster compile times. Requires lld via `cargo install -f cargo-binutils` and `rustup component add llvm-tools-preview`
# linker = "rust-lld.exe"
rustflags = ["-Z", "share-generics=n"]

Expand Down
Loading