From 7749c37b4a5b012c28e418d48e81c412434fcd99 Mon Sep 17 00:00:00 2001 From: cryscan Date: Sat, 27 Jul 2024 19:24:46 +0800 Subject: [PATCH] Bump `kbnf` to v0.1.11 --- Cargo.lock | 24 +++++++++++++++++------- crates/ai00-core/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4bfd1034..0ff5b371 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1661,9 +1661,9 @@ dependencies = [ [[package]] name = "kbnf" -version = "0.1.6" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c3af046fd2069ae28b943a26d0539f344cb18f522b21cdac2329e4504aab1ca" +checksum = "4444c8b071614783b997149be6e9a5ea249181a6b0d4416caf7578200ece809b" dependencies = [ "ahash 0.8.11", "displaydoc", @@ -1684,9 +1684,9 @@ dependencies = [ [[package]] name = "kbnf-regex-automata" -version = "0.4.7" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "499fe4f128763db90782429ea71d01a5503d177d53118589a36e41611286d8a0" +checksum = "50a900e0a0e795744f6b18fe493500a1d773633972251f84f4be909edfb0d0f2" dependencies = [ "aho-corasick", "memchr", @@ -1695,18 +1695,19 @@ dependencies = [ [[package]] name = "kbnf-syntax" -version = "0.1.2" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d45547018cff6095c33df1543d70076837390d40cabc924c069c39b84210c8bd" +checksum = "e0be7fc0a5a4e91ae599acbdb44055f12685a58df78dd5d94f2bee939a24b009" dependencies = [ "kbnf-regex-automata", "nom", "parse-hyperlinks", "regex-syntax", - "rustc-hash 1.1.0", + "rustc-hash 2.0.0", "serde", "string-interner", "thiserror", + "unescaper", ] [[package]] @@ -3880,6 +3881,15 @@ dependencies = [ "web-time", ] +[[package]] +name = "unescaper" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c878a167baa8afd137494101a688ef8c67125089ff2249284bd2b5f9bfedb815" +dependencies = [ + "thiserror", +] + [[package]] name = "unicase" version = "2.7.0" diff --git a/crates/ai00-core/Cargo.toml b/crates/ai00-core/Cargo.toml index 49241647..e4e6dbdc 100644 --- a/crates/ai00-core/Cargo.toml +++ b/crates/ai00-core/Cargo.toml @@ -16,7 +16,7 @@ bytemuck = "1" cbor4ii = { version = "0.3.2", features = ["serde1"] } fastrand = "2" half = "2.4" -kbnf = "0.1.6" +kbnf = "0.1.11" voracious_radix_sort = "1.2.0" qp-trie = "0.8" rustc-hash = "1.1.0"