diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-07-26 09:01:02 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-07-26 09:01:02 +0300 |
commit | c810925fce7d5de1845e09538b6943f54f266cb0 (patch) | |
tree | 7ebbd149f44dd7d4fda558bc176c94ec4389147d /Cargo.lock | |
download | myslip-c810925fce7d5de1845e09538b6943f54f266cb0.tar.gz myslip-c810925fce7d5de1845e09538b6943f54f266cb0.zip |
Initialized project and added nom as dependency
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..ae188dd --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,25 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "melisp" +version = "0.1.0" +dependencies = [ + "nom", +] + +[[package]] +name = "memchr" +version = "2.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" + +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] |