summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJohannes Baiter <johannes.baiter@gmail.com>2023-02-14 08:14:05 +0100
committerGitHub <noreply@github.com>2023-02-14 07:14:05 +0000
commit5cb43772dc26cceddc3496ce99ba3b944f49a8e2 (patch)
treefa60725bde969c44cd776ce80c7e3e7c6a9b338a /Cargo.lock
parentae2124a69ce8750c5a74d3d2e9d6f5c0daf8a29a (diff)
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.lock11
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cf16119b0..2b7786f7f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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"