-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add `kevm-dist` target `foundryx` * Replace target `foundry` by `foundryx` * Set Version: 0.1.38 --------- Co-authored-by: devops <devops@runtimeverification.com>
- Loading branch information
1 parent
e4f1d6e
commit 08de16a
Showing
8 changed files
with
1,622 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.37 | ||
0.1.38 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
if TYPE_CHECKING: | ||
from typing import Final | ||
|
||
VERSION: Final = '0.1.37' | ||
VERSION: Final = '0.1.38' |
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from __future__ import annotations | ||
|
||
from pathlib import Path | ||
from typing import TYPE_CHECKING | ||
|
||
from kevm_pyk.kdist.plugin import KEVMTarget | ||
from kevm_pyk.kompile import KompileTarget | ||
|
||
if TYPE_CHECKING: | ||
from typing import Final | ||
|
||
|
||
FOUNDRY_MD_FILE: Final = Path(__file__).parent / 'foundry.md' | ||
|
||
|
||
__TARGETS__: Final = { | ||
'foundryx': KEVMTarget( | ||
{ | ||
'target': KompileTarget.HASKELL, | ||
'main_file': FOUNDRY_MD_FILE, | ||
'main_module': 'FOUNDRY', | ||
'syntax_module': 'FOUNDRY', | ||
}, | ||
), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters