Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
edg-l committed May 26, 2024
1 parent 16355da commit 21eb2e9
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 58 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions bin/edlangc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlangc"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "A experimental language using LLVM."
edition = "2021"
Expand All @@ -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.18", path = "../../lib/edlang_driver" }
edlang_driver = { version = "0.0.1-alpha.19", path = "../../lib/edlang_driver" }
4 changes: 2 additions & 2 deletions edb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edb"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "The edlang language builder."
edition = "2021"
Expand All @@ -14,7 +14,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_driver = { version = "0.0.1-alpha.18", path = "../lib/edlang_driver" }
edlang_driver = { version = "0.0.1-alpha.19", path = "../lib/edlang_driver" }
anyhow = "1"
clap = { version = "4.5.4", features = ["derive"] }
toml = "0.8.12"
Expand Down
4 changes: 2 additions & 2 deletions lib/edlang_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_ast"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang AST"
edition = "2021"
Expand All @@ -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.18", path = "../edlang_span" }
edlang_span = { version = "0.0.1-alpha.19", path = "../edlang_span" }
8 changes: 4 additions & 4 deletions lib/edlang_check/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_check"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang check"
edition = "2021"
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/edg-l/edlang"

[dependencies]
ariadne = { version = "0.4.1", features = ["auto-color"] }
edlang_ast = { version = "0.0.1-alpha.18", path = "../edlang_ast" }
edlang_lowering = { version = "0.0.1-alpha.18", path = "../edlang_lowering" }
edlang_session = { version = "0.0.1-alpha.18", path = "../edlang_session" }
edlang_ast = { version = "0.0.1-alpha.19", path = "../edlang_ast" }
edlang_lowering = { version = "0.0.1-alpha.19", path = "../edlang_lowering" }
edlang_session = { version = "0.0.1-alpha.19", path = "../edlang_session" }
tracing = { workspace = true }
14 changes: 8 additions & 6 deletions lib/edlang_codegen_llvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_codegen_llvm"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang LLVM codegen"
edition = "2021"
Expand All @@ -13,10 +13,12 @@ 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.18", path = "../edlang_ir" }
edlang_parser = { version = "0.0.1-alpha.18", path = "../edlang_parser" }
edlang_session = { version = "0.0.1-alpha.18", path = "../edlang_session" }
edlang_ir = { version = "0.0.1-alpha.19", path = "../edlang_ir" }
edlang_parser = { version = "0.0.1-alpha.19", path = "../edlang_parser" }
edlang_session = { version = "0.0.1-alpha.19", path = "../edlang_session" }
llvm-sys = "180.0"
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "6c0fb56b3554e939f9ca61b465043d6a84fb7b95", features = ["llvm18-0"] }
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "5c9f7fcbb0a667f7391b94beb65f1a670ad13221", features = [
"llvm18-0",
] }
tracing = { workspace = true }
edlang_span = { version = "0.0.1-alpha.18", path = "../edlang_span" }
edlang_span = { version = "0.0.1-alpha.19", path = "../edlang_span" }
18 changes: 9 additions & 9 deletions lib/edlang_driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_driver"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang compiler driver library"
edition = "2021"
Expand All @@ -15,14 +15,14 @@ repository = "https://github.com/edg-l/edlang"
[dependencies]
ariadne = { version = "0.4.1", features = ["auto-color"] }
clap = { version = "4.5.4", features = ["derive"] }
anyhow = "1"
edlang_ast = { version = "0.0.1-alpha.18", path = "../edlang_ast" }
edlang_check = { version = "0.0.1-alpha.18", path = "../edlang_check" }
edlang_codegen_llvm = { version = "0.0.1-alpha.18", path = "../edlang_codegen_llvm" }
edlang_ir = { version = "0.0.1-alpha.18", path = "../edlang_ir" }
edlang_lowering = { version = "0.0.1-alpha.18", path = "../edlang_lowering" }
edlang_parser = { version = "0.0.1-alpha.18", path = "../edlang_parser" }
edlang_session = { version = "0.0.1-alpha.18", path = "../edlang_session" }
anyhow = "1.0.86"
edlang_ast = { version = "0.0.1-alpha.19", path = "../edlang_ast" }
edlang_check = { version = "0.0.1-alpha.19", path = "../edlang_check" }
edlang_codegen_llvm = { version = "0.0.1-alpha.19", path = "../edlang_codegen_llvm" }
edlang_ir = { version = "0.0.1-alpha.19", path = "../edlang_ir" }
edlang_lowering = { version = "0.0.1-alpha.19", path = "../edlang_lowering" }
edlang_parser = { version = "0.0.1-alpha.19", path = "../edlang_parser" }
edlang_session = { version = "0.0.1-alpha.19", path = "../edlang_session" }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
walkdir = "2.5.0"
Expand Down
4 changes: 2 additions & 2 deletions lib/edlang_ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_ir"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang IR"
edition = "2021"
Expand All @@ -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.18", path = "../edlang_span" }
edlang_span = { version = "0.0.1-alpha.19", path = "../edlang_span" }
smallvec = "1.13.2"
educe = "0.5.11"
8 changes: 4 additions & 4 deletions lib/edlang_lowering/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_lowering"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang lowering"
edition = "2021"
Expand All @@ -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.18", path = "../edlang_ast" }
edlang_ir = { version = "0.0.1-alpha.18", path = "../edlang_ir" }
edlang_ast = { version = "0.0.1-alpha.19", path = "../edlang_ast" }
edlang_ir = { version = "0.0.1-alpha.19", path = "../edlang_ir" }
tracing.workspace = true
thiserror = "1.0.59"
thiserror = "1.0.61"
6 changes: 3 additions & 3 deletions lib/edlang_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_parser"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang parser"
edition = "2021"
Expand All @@ -14,8 +14,8 @@ repository = "https://github.com/edg-l/edlang"

[dependencies]
ariadne = { version = "0.4.1", features = ["auto-color"] }
edlang_ast = { version = "0.0.1-alpha.18", path = "../edlang_ast" }
itertools = "0.12.1"
edlang_ast = { version = "0.0.1-alpha.19", path = "../edlang_ast" }
itertools = "0.13.0"
lalrpop-util = { version = "0.20.2", features = ["lexer"] }
logos = "0.14.0"
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion lib/edlang_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_session"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang session"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion lib/edlang_span/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edlang_span"
version = "0.0.1-alpha.18"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang span"
edition = "2021"
Expand Down

0 comments on commit 21eb2e9

Please sign in to comment.