Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dragazo committed Oct 23, 2023
1 parent 4842fe5 commit e7cce43
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netsblox-vm"
version = "0.2.13"
version = "0.2.14"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Devin Jean <[email protected]>"]
Expand Down Expand Up @@ -70,20 +70,20 @@ rustls-tls-webpki-roots = [
# core deps
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
gc-arena = { version = "=0.3.0", default-features = false }
netsblox-ast = { version = "=0.3.11", default-features = false }
netsblox-ast = { version = "=0.4.1", default-features = false }
# netsblox-ast = { path = "../netsblox-ast", default-features = false }
num-traits = { version = "0.2.16", default-features = false }
num-traits = { version = "0.2.17", default-features = false }
num-derive = { version = "0.3.3", default-features = false }
bin-pool = { version = "0.1.1", default-features = false }
rand = { version = "0.8.5", default-features = false }
checked-float = { version = "0.1.4", default-features = false, features = ["serde"] }
educe = { version = "0.4.23", default-features = false, features = ["Debug", "Clone", "Copy", "PartialOrd", "Ord", "PartialEq", "Eq", "Default"] }
libm = { version = "0.2.7", default-features = false }
libm = { version = "0.2.8", default-features = false }
monostate = { version = "0.1.9", default-features = false }
replace_with = { version = "0.1.7", default-features = false }
superslice = { version = "1.0", default-features = false }
unicase = { version = "2.7.0", default-features = false }
time = { version = "0.3.29", default-features = false }
time = { version = "0.3.30", default-features = false }
typed-arena = { version = "2.0.2", default-features = false }

# std deps
Expand All @@ -93,7 +93,7 @@ async-channel = { version = "1.9.0", default-features = false, optional = true }
reqwest = { version = "0.11", default-features = false, features = ["json"], optional = true }
tokio-tungstenite = { version = "0.20.1", default-features = false, features = ["connect"], optional = true }
names = { version = "0.14.0", default-features = false, optional = true }
uuid = { version = "1.4.1", default-features = false, features = ["v4", "fast-rng"], optional = true }
uuid = { version = "1.5.0", default-features = false, features = ["v4", "fast-rng"], optional = true }
rand_chacha = { version = "0.3.1", default-features = false, optional = true }
getrandom = { version = "0.2.10", default-features = false, optional = true }

Expand Down
6 changes: 3 additions & 3 deletions src/bytecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,7 @@ impl<'a: 'b, 'b> ByteCodeBuilder<'a, 'b> {
ast::ExprKind::ListGet { list, index } => self.append_simple_ins(entity, &[index, list], Instruction::ListGet)?,
ast::ExprKind::ListGetLast { list } => self.append_simple_ins(entity, &[list], Instruction::ListGetLast)?,
ast::ExprKind::ListGetRandom { list } => self.append_simple_ins(entity, &[list], Instruction::ListGetRandom)?,
ast::ExprKind::ListLength { value } => self.append_simple_ins(entity, &[value], Instruction::ListLength)?,
ast::ExprKind::ListLen { value } => self.append_simple_ins(entity, &[value], Instruction::ListLength)?,
ast::ExprKind::ListDims { value } => self.append_simple_ins(entity, &[value], Instruction::ListDims)?,
ast::ExprKind::ListRank { value } => self.append_simple_ins(entity, &[value], Instruction::ListRank)?,
ast::ExprKind::ListRev { value } => self.append_simple_ins(entity, &[value], Instruction::ListRev)?,
Expand Down Expand Up @@ -1757,7 +1757,7 @@ impl<'a: 'b, 'b> ByteCodeBuilder<'a, 'b> {

self.call_holes.push((call_hole_pos, function, entity));
}
ast::StmtKind::RunClosure { new_entity, closure, args } => {
ast::StmtKind::CallClosure { new_entity, closure, args } => {
if let Some(new_entity) = new_entity {
self.append_expr(new_entity, entity)?;
}
Expand Down Expand Up @@ -1976,7 +1976,7 @@ impl<'a: 'b, 'b> ByteCodeBuilder<'a, 'b> {
Some(target) => self.append_simple_ins(entity, &[msg_type, target], Instruction::SendLocalMessage { wait: *wait, target: true })?,
None => self.append_simple_ins(entity, &[msg_type], Instruction::SendLocalMessage { wait: *wait, target: false })?,
}
ast::StmtKind::RunRpc { service, rpc, args } => {
ast::StmtKind::CallRpc { service, rpc, args } => {
let mut tokens = LosslessJoin::new();
tokens.push(service);
tokens.push(rpc);
Expand Down

0 comments on commit e7cce43

Please sign in to comment.