Skip to content

Commit

Permalink
Refactor, fix resolver issue (#151)
Browse files Browse the repository at this point in the history
* fix resolver issue

* move code under src dir

* remove c folder

* fix clippy
  • Loading branch information
Mr-Leshiy authored Apr 7, 2024
1 parent c367b77 commit 32c545d
Show file tree
Hide file tree
Showing 121 changed files with 149 additions and 4,168 deletions.
35 changes: 18 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
[workspace]
resolver = "2"
members = [
"assembler",
"ast",
"bin",
"compiler",
"core",
"collections",
"rpn",
"precompiler",
"src/assembler",
"src/ast",
"src/bin",
"src/compiler",
"src/core",
"src/collections",
"src/rpn",
"src/precompiler",
"testing",
"lexer",
"src/lexer",
]

[workspace.package]
edition = "2021"

[workspace.dependencies]
assembler = { path = "assembler" }
ast = { path = "ast" }
compiler = { path = "compiler" }
core = { path = "core" }
collections = { path = "collections" }
rpn = { path = "rpn" }
precompiler = { path = "precompiler" }
lexer = { path = "lexer" }
assembler = { path = "src/assembler" }
ast = { path = "src/ast" }
compiler = { path = "src/compiler" }
core = { path = "src/core" }
collections = { path = "src/collections" }
rpn = { path = "src/rpn" }
precompiler = { path = "src/precompiler" }
lexer = { path = "src/lexer" }

thiserror = { version = "1.0.40" }

Expand Down
128 changes: 0 additions & 128 deletions c/array/array.cpp

This file was deleted.

37 changes: 0 additions & 37 deletions c/array/array.hpp

This file was deleted.

29 changes: 0 additions & 29 deletions c/assert/assert.hpp

This file was deleted.

22 changes: 0 additions & 22 deletions c/fmt/fmt.hpp

This file was deleted.

29 changes: 0 additions & 29 deletions c/function/function.cpp

This file was deleted.

28 changes: 0 additions & 28 deletions c/function/function.hpp

This file was deleted.

Loading

0 comments on commit 32c545d

Please sign in to comment.