aboutsummaryrefslogtreecommitdiff
path: root/crates/sloth_bytecode/Cargo.toml
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-04-08 03:48:24 -0500
committerCody <cody@codyq.dev>2023-04-08 03:48:24 -0500
commit0eadd4c889049bd89b9dff437f1ed477277452fb (patch)
tree70d4dcd39e175af93c233910e24379f692028e86 /crates/sloth_bytecode/Cargo.toml
parent2970520a9592b5c6d45291f54073552a474b71b4 (diff)
downloadsloth-0eadd4c889049bd89b9dff437f1ed477277452fb.tar.gz
Started on lexer
Diffstat (limited to 'crates/sloth_bytecode/Cargo.toml')
-rw-r--r--crates/sloth_bytecode/Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/sloth_bytecode/Cargo.toml b/crates/sloth_bytecode/Cargo.toml
index a302c81..981b6ee 100644
--- a/crates/sloth_bytecode/Cargo.toml
+++ b/crates/sloth_bytecode/Cargo.toml
@@ -2,3 +2,8 @@
name = "sloth_bytecode"
version = "0.1.0"
edition = "2021"
+
+[dependencies]
+sloth_bytecode_macros = { path = "./macros" }
+
+byteorder = "1.4.3"