Skip to content

Commit

Permalink
core-types: Initial implementation (#77)
Browse files Browse the repository at this point in the history
This initial implementation contains the types used by the Sway-DAP
implementation as compile-time generated source mappings.
  • Loading branch information
vlopes11 authored Jun 17, 2021
1 parent 8008f1b commit 0b683de
Show file tree
Hide file tree
Showing 4 changed files with 257 additions and 34 deletions.
76 changes: 43 additions & 33 deletions Cargo.lock

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

8 changes: 7 additions & 1 deletion Cargo.toml
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"
]
13 changes: 13 additions & 0 deletions core-types/Cargo.toml
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"}
Loading

0 comments on commit 0b683de

Please sign in to comment.