1
0
mirror of https://github.com/KaiserY/trpl-zh-cn synced 2025-04-27 08:38:01 +08:00
trpl-zh-cn/listings/ch20-advanced-features/no-listing-21-pancakes/pancakes/Cargo.lock

59 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-02-06 16:43:51 +08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2022-02-06 16:43:51 +08:00
[[package]]
name = "hello_macro"
version = "0.1.0"
[[package]]
name = "hello_macro_derive"
version = "0.1.0"
dependencies = [
"quote",
"syn",
2022-02-06 16:43:51 +08:00
]
[[package]]
name = "pancakes"
version = "0.1.0"
dependencies = [
"hello_macro",
"hello_macro_derive",
2022-02-06 16:43:51 +08:00
]
[[package]]
name = "proc-macro2"
version = "1.0.80"
2022-02-06 16:43:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a56dea16b0a29e94408b9aa5e2940a4eedbd128a1ba20e8f7ae60fd3d465af0e"
2022-02-06 16:43:51 +08:00
dependencies = [
"unicode-ident",
2022-02-06 16:43:51 +08:00
]
[[package]]
name = "quote"
version = "1.0.36"
2022-02-06 16:43:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2022-02-06 16:43:51 +08:00
dependencies = [
"proc-macro2",
2022-02-06 16:43:51 +08:00
]
[[package]]
name = "syn"
version = "2.0.59"
2022-02-06 16:43:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a6531ffc7b071655e4ce2e04bd464c4830bb585a61cabb96cf808f05172615a"
2022-02-06 16:43:51 +08:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2022-02-06 16:43:51 +08:00
]
[[package]]
name = "unicode-ident"
version = "1.0.12"
2022-02-06 16:43:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"