From 2e5b9accc9fcb5256f591f22721306a2117b77a0 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Tue, 19 Jul 2022 02:07:07 -0500 Subject: [PATCH] Bump dependencies --- Cargo.lock | 4 ++-- Cargo.toml | 8 ++++---- ext/e0-vim/syntax/e0.vim | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 14dfacb..1416839 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -276,9 +276,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "607c8a29735385251a339424dd462993c0fed8fa09d378f259377df08c126022" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "heck" diff --git a/Cargo.toml b/Cargo.toml index 8c4a47b..127150e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,12 +15,12 @@ name = "e0pkg" path = "./bin/e0pkg.rs" [dependencies] -anyhow = "1.0.56" -clap = { version = "3.1.8", features = ["derive"] } +anyhow = "1.0.58" +clap = { version = "3.2.12", features = ["derive"] } codespan-reporting = "0.11.1" frunk = "0.4.0" -lalrpop-util = { version = "0.19.7", features = ["lexer"] } +lalrpop-util = { version = "0.19.8", features = ["lexer"] } tempfile = "3.3.0" [build-dependencies] -lalrpop = "0.19.7" +lalrpop = "0.19.8" diff --git a/ext/e0-vim/syntax/e0.vim b/ext/e0-vim/syntax/e0.vim index 0b259c5..e28f106 100644 --- a/ext/e0-vim/syntax/e0.vim +++ b/ext/e0-vim/syntax/e0.vim @@ -1,6 +1,6 @@ syntax keyword e0Conditional if else syntax keyword e0PrimitiveType int -syntax keyword e0Function fn return +syntax keyword e0Keyword fn type return let new highlight default link e0Conditional Conditional highlight default link e0PrimitiveType Type