]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
ldap: update ldap-parser crate
authorPhilippe Antoine <pantoine@oisf.net>
Thu, 9 Jan 2025 14:07:19 +0000 (15:07 +0100)
committerAlice Akaki <akakialice@gmail.com>
Tue, 14 Jan 2025 21:13:56 +0000 (17:13 -0400)
so that we can implement abandon request support

Ticket: #7477

rust/Cargo.lock.in
rust/Cargo.toml.in

index 498aba94f973e53fceb2c3c2e812c37e7c7e3949..698413e33f304f9533a201a36ac4b347c6271de2 100644 (file)
@@ -85,7 +85,7 @@ dependencies = [
  "nom",
  "num-traits 0.2.19",
  "rusticata-macros",
- "thiserror",
+ "thiserror 1.0.68",
  "time",
 ]
 
@@ -452,13 +452,13 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "ldap-parser"
-version = "0.4.0"
+version = "0.4.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "798f8bf8793bb624e6b840f1c73949949709f9301dc63ddb236e9230674575c9"
+checksum = "d9fde2bd93cf7db2fdba06379826baee0d5414ea093c8c1946701b5a6df046d3"
 dependencies = [
  "asn1-rs",
  "rusticata-macros",
- "thiserror",
+ "thiserror 2.0.10",
 ]
 
 [[package]]
@@ -778,7 +778,7 @@ version = "1.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83"
 dependencies = [
- "thiserror",
+ "thiserror 1.0.68",
  "toml",
 ]
 
@@ -961,7 +961,7 @@ dependencies = [
  "asn1-rs",
  "nom",
  "rusticata-macros",
- "thiserror",
+ "thiserror 1.0.68",
 ]
 
 [[package]]
@@ -1121,7 +1121,16 @@ version = "1.0.68"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892"
 dependencies = [
- "thiserror-impl",
+ "thiserror-impl 1.0.68",
+]
+
+[[package]]
+name = "thiserror"
+version = "2.0.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a3ac7f54ca534db81081ef1c1e7f6ea8a3ef428d2fc069097c079443d24124d3"
+dependencies = [
+ "thiserror-impl 2.0.10",
 ]
 
 [[package]]
@@ -1135,6 +1144,17 @@ dependencies = [
  "syn 2.0.87",
 ]
 
+[[package]]
+name = "thiserror-impl"
+version = "2.0.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e9465d30713b56a37ede7185763c3492a91be2f5fa68d958c44e41ab9248beb"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.87",
+]
+
 [[package]]
 name = "time"
 version = "0.3.36"
@@ -1254,7 +1274,7 @@ dependencies = [
  "nom",
  "oid-registry",
  "rusticata-macros",
- "thiserror",
+ "thiserror 1.0.68",
  "time",
 ]
 
index eaeacff8356e05903dd379f0a68b2be789286b3d..8fad5fee77e324cb9f6cf59c8ed5bd98a27471bd 100644 (file)
@@ -62,7 +62,7 @@ lazy_static = "~1.4.0"
 base64 = "~0.22.1"
 bendy = { version = "~0.3.3", default-features = false }
 asn1-rs = { version = "~0.6.1" }
-ldap-parser = { version = "~0.4.0" }
+ldap-parser = { version = "~0.4.1" }
 hex = "~0.4.3"
 
 time = "~0.3.36"