aboutsummaryrefslogtreecommitdiff
path: root/crates/sloth_vm/Cargo.toml
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2023-04-14 00:25:32 -0500
committerGitHub <noreply@github.com>2023-04-14 00:25:32 -0500
commit97b7cd10d2bec408cc237e13c61562c810d8fd29 (patch)
tree03d4151581277209f3df48c1a49a656c6c32a52b /crates/sloth_vm/Cargo.toml
parent6b25c191a4522610877898506856bd00cd1fc4d5 (diff)
parentfa0da150a5a481be3d1de448edb6f23c170da9a9 (diff)
downloadsloth-97b7cd10d2bec408cc237e13c61562c810d8fd29.tar.gz
Merge pull request #4 from slothlang/vm-basics
Basic VM
Diffstat (limited to 'crates/sloth_vm/Cargo.toml')
-rw-r--r--crates/sloth_vm/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/sloth_vm/Cargo.toml b/crates/sloth_vm/Cargo.toml
index e71c18d..f484402 100644
--- a/crates/sloth_vm/Cargo.toml
+++ b/crates/sloth_vm/Cargo.toml
@@ -6,3 +6,7 @@ version.workspace = true
edition.workspace = true
[dependencies]
+sloth_bytecode = { path = "../sloth_bytecode" }
+
+once_cell = "1.17.1"
+rand = "0.8.5"