Revert "Pin syntect to 4.6.0"

This reverts commit 44968ac2cd.
This commit is contained in:
David Tolnay 2022-05-12 14:01:57 -07:00
parent 6a78e6c65e
commit 841616c039
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
3 changed files with 1 additions and 41 deletions

View file

@ -58,4 +58,4 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/install@cargo-outdated
- run: cargo update
- run: cargo outdated --exit-code 1 --ignore bat,syntect
- run: cargo outdated --exit-code 1 --ignore bat

39
Cargo.lock generated
View file

@ -153,7 +153,6 @@ dependencies = [
"serde",
"syn",
"syn-select",
"syntect",
"tempfile",
"termcolor",
"toml",
@ -170,12 +169,6 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a33d3b80a8db16c4ad7676653766a8e59b5f95443c8823cb7cff587b90cb91ba"
[[package]]
name = "cc"
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
[[package]]
name = "cfg-if"
version = "1.0.0"
@ -528,28 +521,6 @@ version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
[[package]]
name = "onig"
version = "6.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67ddfe2c93bb389eea6e6d713306880c7f6dcc99a75b659ce145d962c861b225"
dependencies = [
"bitflags",
"lazy_static",
"libc",
"onig_sys",
]
[[package]]
name = "onig_sys"
version = "69.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dd3eee045c84695b53b20255bb7317063df090b68e18bfac0abb6c39cf7f33e"
dependencies = [
"cc",
"pkg-config",
]
[[package]]
name = "os_str_bytes"
version = "6.0.0"
@ -574,12 +545,6 @@ dependencies = [
"ucd-trie",
]
[[package]]
name = "pkg-config"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
[[package]]
name = "plist"
version = "1.3.1"
@ -828,21 +793,17 @@ version = "4.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b20815bbe80ee0be06e6957450a841185fcf690fe0178f14d77a05ce2caa031"
dependencies = [
"bincode",
"bitflags",
"fancy-regex",
"flate2",
"fnv",
"lazy_static",
"lazycell",
"onig",
"plist",
"regex-syntax",
"serde",
"serde_derive",
"serde_json",
"walkdir",
"yaml-rust",
]
[[package]]

View file

@ -21,7 +21,6 @@ proc-macro2 = "1.0"
quote = { version = "1.0", default-features = false }
serde = { version = "1.0", features = ["derive"] }
syn-select = "0.2"
syntect = "=4.6.0" # work around https://github.com/trishume/syntect/issues/402
tempfile = "3.0"
termcolor = "1.0"
toml = "0.5"