-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core-types: Initial implementation (#77)
This initial implementation contains the types used by the Sway-DAP implementation as compile-time generated source mappings.
- Loading branch information
Showing
4 changed files
with
257 additions
and
34 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
[workspace] | ||
|
||
members = ["core_lang", "forc", "sway-server", "test_suite"] | ||
members = [ | ||
"core_lang", | ||
"core-types", | ||
"forc", | ||
"sway-server", | ||
"test_suite" | ||
] |
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,13 @@ | ||
[package] | ||
name = "core-types" | ||
description = "Sway core types." | ||
version = "0.1.0" | ||
authors = ["Victor Lopez <victor.lopez@fuel.sh>"] | ||
edition = "2018" | ||
repository = "https://github.com/FuelLabs/sway" | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
serde = {version="1.0", features=["derive"]} | ||
fuel-asm = {git="ssh://git@github.com/FuelLabs/fuel-asm.git"} | ||
fuel-tx = {git="ssh://git@github.com/FuelLabs/fuel-tx.git"} |
Oops, something went wrong.