summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-06-20 07:48:41 +0200
committerCanop <cano.petrole@gmail.com>2020-06-20 07:48:41 +0200
commit62405df7c20b3cbc11ec16f853227f8ff0bc2ccd (patch)
treec1b9efab56c39fb0883e111a0f7c3ba22badfa94
parentb398c3deab7527f866c1678b0ffc45071a4b07ee (diff)
fix ignored negation when no other operation present
A pattern like `!json` was interpreted as `json`
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c387816..32e7df2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -61,9 +61,9 @@ checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
[[package]]
name = "bet"
-version = "0.3.2"
+version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4953a538041b13a91a5ba520693246e452a393fe69158a3d608648d2b44d5062"
+checksum = "d8cf898b0201ea9ea3da57ec3feafb395c153ee8d063912ee79ddb645c276d31"
[[package]]
name = "bitflags"
diff --git a/Cargo.toml b/Cargo.toml
index 227d5c0..ad4a480 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,7 +14,7 @@ build = "build.rs"
exclude = ["website", "broot*.zip"]
[dependencies]
-bet = "0.3.2"
+bet = "0.3.3"
clap = { version="2.33", default-features=false, features=["suggestions"] }
chrono = "0.4"
crossbeam = "0.7"