1 Commits

Author SHA1 Message Date
dependabot[bot]
a0e78c6ffa Bump linked-hash-map from 0.5.4 to 0.5.6
Bumps [linked-hash-map](https://github.com/contain-rs/linked-hash-map) from 0.5.4 to 0.5.6.
- [Release notes](https://github.com/contain-rs/linked-hash-map/releases)
- [Commits](https://github.com/contain-rs/linked-hash-map/commits/v0.5.6)

---
updated-dependencies:
- dependency-name: linked-hash-map
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-09 20:13:27 +00:00
2 changed files with 11 additions and 34 deletions

39
Cargo.lock generated
View File

@@ -404,7 +404,7 @@ dependencies = [
"serde",
"serde_yaml",
"shell-words",
"syntect 4.6.0",
"syntect",
"thiserror",
"unicode-width",
"walkdir",
@@ -431,7 +431,7 @@ dependencies = [
"pretty_env_logger",
"rand 0.8.5",
"serde",
"syntect 5.0.0",
"syntect",
"tokio",
]
@@ -510,9 +510,9 @@ checksum = "0e851ca7c24871e7336801608a4797d7376545b6928a10d32d75685687141ead"
[[package]]
name = "bytes"
version = "1.1.0"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
dependencies = [
"serde",
]
@@ -1239,9 +1239,9 @@ dependencies = [
[[package]]
name = "linked-hash-map"
version = "0.5.4"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
[[package]]
name = "local-channel"
@@ -1428,9 +1428,9 @@ dependencies = [
[[package]]
name = "once_cell"
version = "1.13.1"
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e"
checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
[[package]]
name = "onig"
@@ -1887,29 +1887,6 @@ dependencies = [
"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]]
name = "sys-info"
version = "0.9.1"

View File

@@ -12,7 +12,7 @@ argh = "0.1"
log = "0.4"
pretty_env_logger = "0.4"
linked-hash-map = "0.5"
once_cell = "1.13"
once_cell = "1.10"
parking_lot = "0.12"
bytes = { version = "1.1", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
@@ -23,8 +23,8 @@ actix-web = "4.0"
htmlescape = "0.3"
askama = "0.11"
bat = "0.20"
syntect = "5.0"
tokio = { version = "1.20", features = ["sync"] }
syntect = "4.6"
tokio = { version = "1.17", features = ["sync"] }
futures = "0.3"
[profile.release]