Bump syntect from 4.6.0 to 5.0.0

Bumps [syntect](https://github.com/trishume/syntect) from 4.6.0 to 5.0.0.
- [Release notes](https://github.com/trishume/syntect/releases)
- [Changelog](https://github.com/trishume/syntect/blob/master/CHANGELOG.md)
- [Commits](https://github.com/trishume/syntect/compare/v4.6.0...v5.0.0)

---
updated-dependencies:
- dependency-name: syntect
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-09-09 20:06:20 +00:00
committed by GitHub
parent 060c5e8733
commit 459b90ec4a
2 changed files with 26 additions and 3 deletions

27
Cargo.lock generated
View File

@@ -404,7 +404,7 @@ dependencies = [
"serde", "serde",
"serde_yaml", "serde_yaml",
"shell-words", "shell-words",
"syntect", "syntect 4.6.0",
"thiserror", "thiserror",
"unicode-width", "unicode-width",
"walkdir", "walkdir",
@@ -431,7 +431,7 @@ dependencies = [
"pretty_env_logger", "pretty_env_logger",
"rand 0.8.5", "rand 0.8.5",
"serde", "serde",
"syntect", "syntect 5.0.0",
"tokio", "tokio",
] ]
@@ -1887,6 +1887,29 @@ dependencies = [
"yaml-rust", "yaml-rust",
] ]
[[package]]
name = "syntect"
version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6c454c27d9d7d9a84c7803aaa3c50cd088d2906fe3c6e42da3209aa623576a8"
dependencies = [
"bincode",
"bitflags",
"flate2",
"fnv",
"lazy_static",
"once_cell",
"onig",
"plist",
"regex-syntax",
"serde",
"serde_derive",
"serde_json",
"thiserror",
"walkdir",
"yaml-rust",
]
[[package]] [[package]]
name = "sys-info" name = "sys-info"
version = "0.9.1" version = "0.9.1"

View File

@@ -23,7 +23,7 @@ actix-web = "4.0"
htmlescape = "0.3" htmlescape = "0.3"
askama = "0.11" askama = "0.11"
bat = "0.20" bat = "0.20"
syntect = "4.6" syntect = "5.0"
tokio = { version = "1.20", features = ["sync"] } tokio = { version = "1.20", features = ["sync"] }
futures = "0.3" futures = "0.3"