Skip to content

Commit

Permalink
Merge pull request #8 from runtimeverification/raoul/replace-toml-parser
Browse files Browse the repository at this point in the history
Replace TOML parser.
  • Loading branch information
RaoulSchaffranek authored May 28, 2024
2 parents 50d8e40 + 815bfd7 commit 9febf1b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the "Simbolik VSCode" extension will be documented in this file.

## [2.0.3] - 2024-05-28

- Fixed a bug in the TOML parser

## [2.0.2] - 2024-05-27

- Added information about the Simbolik API.
Expand Down
26 changes: 15 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"publisher": "runtimeverification",
"description": "Advanced Solidity and EVM Debugger",
"version": "2.0.2",
"version": "2.0.3",
"engines": {
"vscode": "^1.79.0"
},
Expand Down Expand Up @@ -210,7 +210,7 @@
"dependencies": {
"@solidity-parser/parser": "^0.18.0",
"@types/ws": "^8.5.10",
"ws": "^8.16.0",
"toml": "^3.0.0"
"smol-toml": "^1.2.0",
"ws": "^8.16.0"
}
}
2 changes: 1 addition & 1 deletion src/foundry.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as vscode from 'vscode';
import {getConfigValue} from './utils';
import {parse as parseToml} from 'toml';
import {parse as parseToml} from 'smol-toml';


export
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"compilerOptions": {
"rootDir": "src",
"outDir": "build",
"lib": ["ES2020"],
"target": "ES2020"
"lib": ["ES2022"],
"target": "ES2022"
},
"include": [
"src/**/*.ts",
Expand Down

0 comments on commit 9febf1b

Please sign in to comment.