https://github.com/sharkdp/fd
https://david-peter.de/

fd v8.1.1
A simple, fast and user-friendly alternative to 'find'

rust

ca-certificates.tcz is installed 
sudo mkdir -p /etc/ssl/
sudo ln -s /usr/local/etc/ssl/certs /etc/ssl/certs

install latest rust compiler:
    # https://www.rust-lang.org/tools/install
    # reference: https://github.com/rust-lang/rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Development dependencies: tce-load -i compiletc python3.6 automake cmake curl openssl-1.1.1 pkg-config fontconfig-dev
    compiletc
    python3.6
    automake
    cmake
    curl
    openssl-1.1.1
    pkg-config
    fontconfig-dev

Building on a Unix-like system

Make sure you have installed the dependencies:
    g++ 5.1 or later or clang++ 3.5 or later
    python 3 or 2.7
    GNU make 3.81 or later
    cmake 3.4.3 or later
    curl
    git
    ssl which comes in libssl-dev or openssl-devel
    pkg-config if you are compiling on Linux and targeting Linux
    fontconfig-dev


source $HOME/.cargo/env

wget https://github.com/sharkdp/fd/archive/v8.1.1.tar.gz

        ?? release.sh (commenting out the non-Linux builds)
    # not these usual rust methods
    # cargo build  (from dir with Cargo.toml)
cargo install --path .

test with
base norestore  

Runtime dependencies: none

find ./squashfs-root -exec touch -m --reference=./squashfs-root/usr/local/bin/fd {} +

mksquashfs ./squashfs-root ./fd-find.tcz -noappend -no-xattrs
mksquashfs ./squashfs-root ./fd-find-doc.tcz -noappend -no-xattrs

submitqc --color --libs --fix --strip ./fd-find.tcz
submitqc --color --libs --fix --strip ./fd-find-doc.tcz

# get the extension files dates the same as tcz
for file in fd-find.tcz.*; do touch --no-create --reference=fd-find.tcz $file; done
for file in fd-find-doc.tcz.*; do touch --no-create --reference=fd-find-doc.tcz $file; done

# set the permissions
for file in fd-find.*; do chmod 666 $file; done
for file in fd-find-doc.*; do chmod 666 $file; done

#tar all necessary and optional files, example:
tar cvzf ./fd-find.tar.gz ./fd-find/
tar cvzf ./fd-find-doc.tar.gz ./fd-find-doc/

save this file with name compile_fd-find
