Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Markos-Th09 committed Mar 11, 2024
1 parent b303e81 commit e5e0cc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@ categories.workspace = true
extended-description = "Clue is a programming language that compiles blazingly fast into Lua code with a syntax similar to languages like C or Rust."

[dependencies]
flume = "0.10.14"
flume = "0.11.0"
num_cpus = "1.14.0"
crossbeam-queue = "0.3.8"
ahash.workspace = true
clue_core = { path = "../core", version = "3.4.6", default-features = false }
clap.workspace = true
mlua = { version = "0.8.3", features = ["luajit", "vendored"], optional = true }
mlua = { version = "0.9.6", features = ["luajit", "vendored"], optional = true }
rpmalloc = { version = "0.2.2", optional = true }

[features]
default = ["interpreter", "rpmalloc", "lsp"]
interpreter = ["mlua"]
rpmalloc = ["rpmalloc"]
lsp = ["clue_core/lsp"]
4 changes: 2 additions & 2 deletions core/src/scanner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ pub enum TokenType {
SQUARE_BRACKET_CLOSED, CURLY_BRACKET_OPEN, CURLY_BRACKET_CLOSED,
SAFE_CALL, COMMA, SAFE_SQUARE_BRACKET, SEMICOLON, QUESTION_MARK,
DOT, DOUBLE_COLON, TWODOTS, COLON, THREEDOTS, ARROW, SAFE_DOT,
SAFE_DOUBLE_COLON, NOT, BIT_NOT, STAR, SLASH, PERCENTUAL, PERCENTUAL,
SAFE_DOUBLE_COLON, NOT, BIT_NOT, STAR, SLASH, PERCENTUAL,
PLUS, MINUS, LEFT_SHIFT, RIGHT_SHIFT, SMALLER, SMALLER_EQUAL,
BIGGER, BIGGER_EQUAL, EQUAL, NOT_EQUAL, BIT_AND, BIT_XOR, BIT_OR,
AND, OR, FLOOR_DIVISION, CARET, HASHTAG, COALESCE, BIT_AND, BIT_XOR, BIT_OR,
AND, OR, FLOOR_DIVISION, CARET, HASHTAG, COALESCE,
DEFINE, DEFINE_AND, DEFINE_OR, INCREASE, DECREASE, MULTIPLY, DIVIDE,
DEFINE_COALESCE, EXPONENTIATE, CONCATENATE, MODULATE,

Expand Down

0 comments on commit e5e0cc7

Please sign in to comment.