From: Philippe Antoine Date: Thu, 9 Jan 2025 14:07:19 +0000 (+0100) Subject: ldap: update ldap-parser crate X-Git-Tag: suricata-8.0.0-beta1~565 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=770a75911fce728a65025a83182e41f1f1f7c3ec;p=thirdparty%2Fsuricata.git ldap: update ldap-parser crate so that we can implement abandon request support Ticket: #7477 --- diff --git a/rust/Cargo.lock.in b/rust/Cargo.lock.in index 498aba94f9..698413e33f 100644 --- a/rust/Cargo.lock.in +++ b/rust/Cargo.lock.in @@ -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", ] diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index eaeacff835..8fad5fee77 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -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"