mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
Pull in C-string literal support in prettyplease, syn, and proc-macro2
This commit is contained in:
parent
eda549f0e5
commit
f3834292b2
2 changed files with 9 additions and 9 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -543,9 +543,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|||
|
||||
[[package]]
|
||||
name = "prettyplease"
|
||||
version = "0.2.17"
|
||||
version = "0.2.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8d3928fb5db768cb86f891ff014f0144589297e3c6a1aba6ed7cecfdace270c7"
|
||||
checksum = "43691bed4607592afec0d97723e6820211ce6b84089e082f04dbc882ea9379b8"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"syn",
|
||||
|
@ -553,9 +553,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "proc-macro2"
|
||||
version = "1.0.79"
|
||||
version = "1.0.80"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
|
||||
checksum = "a56dea16b0a29e94408b9aa5e2940a4eedbd128a1ba20e8f7ae60fd3d465af0e"
|
||||
dependencies = [
|
||||
"unicode-ident",
|
||||
]
|
||||
|
@ -729,9 +729,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.58"
|
||||
version = "2.0.59"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687"
|
||||
checksum = "4a6531ffc7b071655e4ce2e04bd464c4830bb585a61cabb96cf808f05172615a"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
|
@ -21,12 +21,12 @@ bat = { version = "0.24", default-features = false, features = ["paging", "regex
|
|||
cargo-subcommand-metadata = "0.1"
|
||||
clap = { version = "4", features = ["deprecated", "derive"] }
|
||||
fs-err = "2"
|
||||
prettyplease = { version = "0.2.17", features = ["verbatim"] }
|
||||
proc-macro2 = "1.0.74"
|
||||
prettyplease = { version = "0.2.18", features = ["verbatim"] }
|
||||
proc-macro2 = "1.0.80"
|
||||
quote = { version = "1.0.35", default-features = false }
|
||||
serde = { version = "1.0.183", features = ["derive"] }
|
||||
shlex = "1.3"
|
||||
syn = { version = "2.0.46", default-features = false, features = ["clone-impls", "fold", "full", "parsing", "printing", "visit-mut"] }
|
||||
syn = { version = "2.0.59", default-features = false, features = ["clone-impls", "fold", "full", "parsing", "printing", "visit-mut"] }
|
||||
syn-select = "0.3"
|
||||
tempfile = "3.0"
|
||||
termcolor = "1.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue