Update reedline dev version lock (#9644)

- See nushell/reedline#600
- updates to `strum 0.25` which uses the newer more widespread `syn 2.0`
- this deduplicates `syn` for a default build.
- Unlocks #9639
This commit is contained in:
Stefan Holderbach 2023-07-10 13:04:49 +02:00 committed by GitHub
parent a3702e1eb7
commit 266c9ae9e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

33
Cargo.lock generated
View file

@ -688,8 +688,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e959d788268e3bf9d35ace83e81b124190378e4c91c9067524675e33394b8ba" checksum = "7e959d788268e3bf9d35ace83e81b124190378e4c91c9067524675e33394b8ba"
dependencies = [ dependencies = [
"crossterm", "crossterm",
"strum", "strum 0.24.1",
"strum_macros", "strum_macros 0.24.3",
"unicode-width", "unicode-width",
] ]
@ -2953,8 +2953,8 @@ dependencies = [
"num-format", "num-format",
"serde", "serde",
"serde_json", "serde_json",
"strum", "strum 0.24.1",
"strum_macros", "strum_macros 0.24.3",
"thiserror", "thiserror",
"typetag", "typetag",
] ]
@ -4244,7 +4244,7 @@ dependencies = [
[[package]] [[package]]
name = "reedline" name = "reedline"
version = "0.21.0" version = "0.21.0"
source = "git+https://github.com/nushell/reedline.git?branch=main#2142c5c8e98aac8ce09d443b17a94f589b75afde" source = "git+https://github.com/nushell/reedline.git?branch=main#cf841beb92affc7cb5cdc16bddefdebcd001f8c9"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossterm", "crossterm",
@ -4255,8 +4255,8 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"strip-ansi-escapes", "strip-ansi-escapes",
"strum", "strum 0.25.0",
"strum_macros", "strum_macros 0.25.1",
"thiserror", "thiserror",
"unicode-segmentation", "unicode-segmentation",
"unicode-width", "unicode-width",
@ -4944,6 +4944,12 @@ version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
[[package]]
name = "strum"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
[[package]] [[package]]
name = "strum_macros" name = "strum_macros"
version = "0.24.3" version = "0.24.3"
@ -4957,6 +4963,19 @@ dependencies = [
"syn 1.0.109", "syn 1.0.109",
] ]
[[package]]
name = "strum_macros"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6069ca09d878a33f883cc06aaa9718ede171841d3832450354410b718b097232"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn 2.0.23",
]
[[package]] [[package]]
name = "supports-color" name = "supports-color"
version = "2.0.0" version = "2.0.0"