diff options
| author | Cody <cody@codyq.dev> | 2023-04-08 03:48:24 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-04-08 03:48:24 -0500 |
| commit | 0eadd4c889049bd89b9dff437f1ed477277452fb (patch) | |
| tree | 70d4dcd39e175af93c233910e24379f692028e86 /Cargo.lock | |
| parent | 2970520a9592b5c6d45291f54073552a474b71b4 (diff) | |
| download | sloth-0eadd4c889049bd89b9dff437f1ed477277452fb.tar.gz | |
Started on lexer
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 27 |
1 files changed, 23 insertions, 4 deletions
@@ -3,6 +3,12 @@ version = 3 [[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] name = "either" version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -19,9 +25,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.53" +version = "1.0.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba466839c78239c09faf015484e5cc04860f88242cff4d03eb038f04b4699b73" +checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534" dependencies = [ "unicode-ident", ] @@ -46,6 +52,19 @@ dependencies = [ [[package]] name = "sloth_bytecode" version = "0.1.0" +dependencies = [ + "byteorder", + "sloth_bytecode_macros", +] + +[[package]] +name = "sloth_bytecode_macros" +version = "0.1.0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] [[package]] name = "sloth_vm" @@ -53,9 +72,9 @@ version = "0.1.0" [[package]] name = "syn" -version = "2.0.8" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcc02725fd69ab9f26eab07fad303e2497fad6fb9eba4f96c4d1687bdf704ad9" +checksum = "79d9531f94112cfc3e4c8f5f02cb2b58f72c97b7efd85f70203cc6d8efda5927" dependencies = [ "proc-macro2", "quote", |
