From a6d3033b25225f45e1a9cae60153ef9abb3fedc5 Mon Sep 17 00:00:00 2001 From: David James Date: Mon, 12 Aug 2024 21:02:38 -0400 Subject: [PATCH] add Cargo.lock See: - https://blog.rust-lang.org/2023/08/29/committing-lockfiles.html - https://doc.rust-lang.org/cargo/faq.html#why-have-cargolock-in-version-control - https://github.com/rust-lang/cargo/issues/315 --- .gitignore | 1 - Cargo.lock | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 Cargo.lock diff --git a/.gitignore b/.gitignore index 82b32a0..0592392 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ /target .DS_Store -Cargo.lock diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..ad008b9 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,47 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "proc-macro2" +version = "1.0.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "q-num" +version = "0.1.1" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "syn" +version = "2.0.74" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"