nushell/crates/nu-command/src/filesystem
Filip Andersson 1433f4a520
Changes HashMap to use aHash instead, giving a performance boost. (#9391)
# Description

see https://github.com/nushell/nushell/issues/9390
using `ahash` instead of the default hasher. this will not affect
compile time as we where already building `ahash`.


# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->

# Tests + Formatting
<!--
Don't forget to add tests that cover your changes.

Make sure you've run and fixed any issues with these commands:

- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A
clippy::needless_collect -A clippy::result_large_err` to check that
you're using the standard code style
- `cargo test --workspace` to check that all tests pass
- `cargo run -- crates/nu-std/tests/run.nu` to run the tests for the
standard library

> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->

# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->
2023-06-10 11:41:58 -05:00
..
cd_query.rs Fix typos by codespell (#7600) 2022-12-26 02:31:26 -05:00
cd.rs REFACTOR: remove the shell commands (#8415) 2023-05-13 12:40:11 -05:00
cp.rs add -u flag to cp, mv command (#9214) 2023-05-20 09:48:57 -07:00
glob.rs add the ability to have a list of glob excludes (#9343) 2023-06-02 12:37:17 -05:00
ls.rs bump rust toolchain to 1.68.2 (#9346) 2023-06-02 17:30:15 -05:00
mkdir.rs Document and critically review ShellError variants - Ep. 2 (#8326) 2023-03-06 11:31:07 +01:00
mod.rs move BufferedReader out of nu-command (#7697) 2023-01-06 15:22:17 -08:00
mv.rs add -u flag to cp, mv command (#9214) 2023-05-20 09:48:57 -07:00
open.rs Add rest and glob support to 'open' (#8506) 2023-03-18 08:51:39 +13:00
rm.rs Changes HashMap to use aHash instead, giving a performance boost. (#9391) 2023-06-10 11:41:58 -05:00
save.rs don't allow save command to save both stdout and stderr to the same file (#9368) 2023-06-10 10:09:19 +02:00
start.rs docs: Add missing space in Filesystem/start's usage (#8458) 2023-03-15 07:16:41 -05:00
touch.rs Document and critically review ShellError variants - Ep. 2 (#8326) 2023-03-06 11:31:07 +01:00
util.rs add -u flag to cp, mv command (#9214) 2023-05-20 09:48:57 -07:00
watch.rs Explain how to do time based bash watch (#9345) 2023-06-03 11:15:47 -05:00