Codebase list rust-stfu8 / 434d733
fd-find: rebase of the patch Sylvestre Ledru 4 years ago
2 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
11 ===================================================================
22 --- fd-find.orig/build.rs
33 +++ fd-find/build.rs
4 @@ -35,4 +35,8 @@ fn main() {
4 @@ -28,4 +28,8 @@ fn main() {
55 app.gen_completions("fd", Shell::Fish, &outdir);
66 app.gen_completions("fd", Shell::Zsh, &outdir);
77 app.gen_completions("fd", Shell::PowerShell, &outdir);
11 ===================================================================
22 --- fd-find.orig/Cargo.toml
33 +++ fd-find/Cargo.toml
4 @@ -80,8 +80,6 @@ version = "2.31.2"
4 @@ -83,8 +83,6 @@ version = "2.31.2"
55
66 [build-dependencies.version_check]
77 version = "0.9"
1414 ===================================================================
1515 --- fd-find.orig/src/main.rs
1616 +++ fd-find/src/main.rs
17 @@ -36,9 +36,9 @@ use crate::internal::{
18 };
17 @@ -30,9 +30,9 @@ use crate::options::Options;
18 use crate::regex_helper::pattern_has_uppercase_char;
1919
2020 // We use jemalloc for performance reasons, see https://github.com/sharkdp/fd/pull/481
2121 -#[cfg(all(not(windows), not(target_env = "musl")))]
2525 +// #[global_allocator]
2626 +// static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
2727
28 fn main() {
29 let checked_args = transform_args_with_exec(env::args_os());
28 fn run() -> Result<ExitCode> {
29 let matches = app::build_app().get_matches_from(env::args_os());