-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
40 additions
and
40 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,6 +1,6 @@ | ||
[package] | ||
name = "edlang" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "A experimental language using LLVM." | ||
edition = "2021" | ||
|
@@ -14,4 +14,4 @@ repository = "https://github.com/edg-l/edlang" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
edlang_driver = { version = "0.0.1-alpha.10", path = "../../lib/edlang_driver" } | ||
edlang_driver = { version = "0.0.1-alpha.11", path = "../../lib/edlang_driver" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_ast" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang AST" | ||
edition = "2021" | ||
|
@@ -13,4 +13,4 @@ repository = "https://github.com/edg-l/edlang" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
edlang_span = { version = "0.0.1-alpha.10", path = "../edlang_span" } | ||
edlang_span = { version = "0.0.1-alpha.11", path = "../edlang_span" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_check" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang check" | ||
edition = "2021" | ||
|
@@ -14,7 +14,7 @@ repository = "https://github.com/edg-l/edlang" | |
|
||
[dependencies] | ||
ariadne = { version = "0.4.0", features = ["auto-color"] } | ||
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" } | ||
edlang_lowering = { version = "0.0.1-alpha.10", path = "../edlang_lowering" } | ||
edlang_session = { version = "0.0.1-alpha.10", path = "../edlang_session" } | ||
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" } | ||
edlang_lowering = { version = "0.0.1-alpha.11", path = "../edlang_lowering" } | ||
edlang_session = { version = "0.0.1-alpha.11", path = "../edlang_session" } | ||
tracing = { workspace = true } |
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_codegen_llvm" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang LLVM codegen" | ||
edition = "2021" | ||
|
@@ -13,10 +13,10 @@ repository = "https://github.com/edg-l/edlang" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
edlang_ir = { version = "0.0.1-alpha.10", path = "../edlang_ir" } | ||
edlang_parser = { version = "0.0.1-alpha.10", path = "../edlang_parser" } | ||
edlang_session = { version = "0.0.1-alpha.10", path = "../edlang_session" } | ||
edlang_ir = { version = "0.0.1-alpha.11", path = "../edlang_ir" } | ||
edlang_parser = { version = "0.0.1-alpha.11", path = "../edlang_parser" } | ||
edlang_session = { version = "0.0.1-alpha.11", path = "../edlang_session" } | ||
llvm-sys = "170.0.1" | ||
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "e0aa2e51a6cb501e4e2a889bbea12a1efab9c4ff", features = ["llvm17-0"] } | ||
tracing = { workspace = true } | ||
edlang_span = { version = "0.0.1-alpha.10", path = "../edlang_span" } | ||
edlang_span = { version = "0.0.1-alpha.11", path = "../edlang_span" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_driver" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang compiler driver library" | ||
edition = "2021" | ||
|
@@ -16,13 +16,13 @@ repository = "https://github.com/edg-l/edlang" | |
ariadne = { version = "0.4.0", features = ["auto-color"] } | ||
clap = { version = "4.4.16", features = ["derive"] } | ||
color-eyre = "0.6.2" | ||
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" } | ||
edlang_check = { version = "0.0.1-alpha.10", path = "../edlang_check" } | ||
edlang_codegen_llvm = { version = "0.0.1-alpha.10", path = "../edlang_codegen_llvm" } | ||
edlang_ir = { version = "0.0.1-alpha.10", path = "../edlang_ir" } | ||
edlang_lowering = { version = "0.0.1-alpha.10", path = "../edlang_lowering" } | ||
edlang_parser = { version = "0.0.1-alpha.10", path = "../edlang_parser" } | ||
edlang_session = { version = "0.0.1-alpha.10", path = "../edlang_session" } | ||
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" } | ||
edlang_check = { version = "0.0.1-alpha.11", path = "../edlang_check" } | ||
edlang_codegen_llvm = { version = "0.0.1-alpha.11", path = "../edlang_codegen_llvm" } | ||
edlang_ir = { version = "0.0.1-alpha.11", path = "../edlang_ir" } | ||
edlang_lowering = { version = "0.0.1-alpha.11", path = "../edlang_lowering" } | ||
edlang_parser = { version = "0.0.1-alpha.11", path = "../edlang_parser" } | ||
edlang_session = { version = "0.0.1-alpha.11", path = "../edlang_session" } | ||
tracing = { workspace = true } | ||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_ir" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang IR" | ||
edition = "2021" | ||
|
@@ -13,6 +13,6 @@ repository = "https://github.com/edg-l/edlang" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
edlang_span = { version = "0.0.1-alpha.10", path = "../edlang_span" } | ||
edlang_span = { version = "0.0.1-alpha.11", path = "../edlang_span" } | ||
smallvec = "1.13.1" | ||
educe = "0.5.11" |
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_lowering" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang lowering" | ||
edition = "2021" | ||
|
@@ -13,7 +13,7 @@ repository = "https://github.com/edg-l/edlang" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" } | ||
edlang_ir = { version = "0.0.1-alpha.10", path = "../edlang_ir" } | ||
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" } | ||
edlang_ir = { version = "0.0.1-alpha.11", path = "../edlang_ir" } | ||
tracing.workspace = true | ||
thiserror = "1.0.57" |
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_parser" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang parser" | ||
edition = "2021" | ||
|
@@ -14,7 +14,7 @@ repository = "https://github.com/edg-l/edlang" | |
|
||
[dependencies] | ||
ariadne = { version = "0.4.0", features = ["auto-color"] } | ||
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" } | ||
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" } | ||
itertools = "0.12.0" | ||
lalrpop-util = { version = "0.20.0", features = ["lexer"] } | ||
logos = "0.14.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_session" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang session" | ||
edition = "2021" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "edlang_span" | ||
version = "0.0.1-alpha.10" | ||
version = "0.0.1-alpha.11" | ||
authors = ["Edgar Luque <[email protected]>"] | ||
description = "edlang span" | ||
edition = "2021" | ||
|