diff options
| author | Johannes Baiter <johannes.baiter@gmail.com> | 2023-02-14 08:14:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-14 07:14:05 +0000 |
| commit | 5cb43772dc26cceddc3496ce99ba3b944f49a8e2 (patch) | |
| tree | fa60725bde969c44cd776ce80c7e3e7c6a9b338a /Cargo.lock | |
| parent | Make the install script more robust (#692) (diff) | |
| download | atuin-5cb43772dc26cceddc3496ce99ba3b944f49a8e2.zip | |
Add `history_filter` cfg to exclude commands from history (#515) (#716)
Adds a new `history_filter` setting through which users can specify a
list of regular expressions that match commands that should not be
recorded in the history.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -133,6 +133,7 @@ dependencies = [ "semver", "serde", "serde_json", + "serde_regex", "sha2", "shellexpand", "sodiumoxide", @@ -1872,6 +1873,16 @@ dependencies = [ ] [[package]] +name = "serde_regex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf" +dependencies = [ + "regex", + "serde", +] + +[[package]] name = "serde_urlencoded" version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" |
