From 316123b402d67dae1c24fceb576210a27ea7c0f9 Mon Sep 17 00:00:00 2001 From: Chris Ha Date: Thu, 1 Jun 2023 21:28:51 +0900 Subject: [PATCH] Update Cargo.toml `cargo update` yield the following Updating regex v1.8.1 -> v1.8.3 Updating regex-syntax v0.7.1 -> v0.7.2 --- tokenizers/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tokenizers/Cargo.toml b/tokenizers/Cargo.toml index 45fbd57d8..3035bcaa4 100644 --- a/tokenizers/Cargo.toml +++ b/tokenizers/Cargo.toml @@ -46,16 +46,16 @@ harness = false lazy_static = "1.4" rand = "0.8" onig = { version = "6.0", default-features = false, optional = true } -regex = "1.3" -regex-syntax = "0.6" -rayon = "1.3" +regex = "1.8" +regex-syntax = "0.7" +rayon = "1.7" rayon-cond = "0.1" serde = { version = "1.0", features = [ "derive" ] } serde_json = "1.0" clap = { version = "4.0", features=["derive"], optional = true } unicode-normalization-alignments = "0.1" unicode_categories = "0.1" -unicode-segmentation = "1.6" +unicode-segmentation = "1.10" indicatif = {version = "0.15", optional = true} itertools = "0.9" log = "0.4"