chore: fix dependabot alerts for crassbeam-utils and regex

This commit is contained in:
appflowy 2022-06-14 08:46:11 +08:00
parent ae4cc496fc
commit 298b80f4c5
3 changed files with 11 additions and 6 deletions

View File

@ -489,9 +489,9 @@ dependencies = [
[[package]] [[package]]
name = "crossbeam-utils" name = "crossbeam-utils"
version = "0.8.6" version = "0.8.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfcae03edb34f947e64acdb1c33ec169824e20657e9ecb61cef6c8c74dcb8120" checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"lazy_static", "lazy_static",
@ -561,6 +561,7 @@ dependencies = [
"allo-isolate", "allo-isolate",
"byteorder", "byteorder",
"bytes", "bytes",
"crossbeam-utils",
"dart-notify", "dart-notify",
"ffi-support", "ffi-support",
"flowy-derive", "flowy-derive",
@ -947,6 +948,7 @@ dependencies = [
"nanoid", "nanoid",
"protobuf", "protobuf",
"rayon", "rayon",
"regex",
"rust_decimal", "rust_decimal",
"rusty-money", "rusty-money",
"serde", "serde",
@ -2676,9 +2678,9 @@ dependencies = [
[[package]] [[package]]
name = "regex" name = "regex"
version = "1.5.4" version = "1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick",
"memchr", "memchr",
@ -2696,9 +2698,9 @@ dependencies = [
[[package]] [[package]]
name = "regex-syntax" name = "regex-syntax"
version = "0.6.25" version = "0.6.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
[[package]] [[package]]
name = "remove_dir_all" name = "remove_dir_all"

View File

@ -22,6 +22,8 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = {version = "1.0"} serde_json = {version = "1.0"}
bytes = { version = "1.0" } bytes = { version = "1.0" }
once_cell = "1" once_cell = "1"
crossbeam-utils = "0.8.7"
lib-dispatch = {path = "../lib-dispatch" } lib-dispatch = {path = "../lib-dispatch" }
flowy-sdk = {path = "../flowy-sdk"} flowy-sdk = {path = "../flowy-sdk"}

View File

@ -36,6 +36,7 @@ serde_json = {version = "1.0"}
serde_repr = "0.1" serde_repr = "0.1"
indexmap = {version = "1.8.1", features = ["serde"]} indexmap = {version = "1.8.1", features = ["serde"]}
fancy-regex = "0.10.0" fancy-regex = "0.10.0"
regex = "1.5.6"
url = { version = "2"} url = { version = "2"}
futures = "0.3.15" futures = "0.3.15"