1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/www/lychee/files/patch-Cargo.toml
Luca Pizzamiglio 00f0bec91b www/lychee: Reduce memory usage during build
Removing profile.release is going to create a new binary.
* no debug information
* opt-level from 3 to 2

With less memory requirements, we hope to have successful build on
32 bits architecture
2023-07-09 23:28:37 +02:00

10 lines
160 B
TOML

--- Cargo.toml.orig 2023-07-09 21:00:15 UTC
+++ Cargo.toml
@@ -6,6 +6,3 @@ resolver = "2"
"benches",
]
resolver = "2"
-
-[profile.release]
-debug = true