diff --git a/Cargo.lock b/Cargo.lock index c520162..a979b57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -252,8 +252,8 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "els" -version = "0.1.16-nightly.0" -source = "git+https://github.com/erg-lang/erg?branch=main#d8f4d14abd27e89e8b6e8ab441b14d2a0a133fb4" +version = "0.1.16-nightly.1" +source = "git+https://github.com/erg-lang/erg?branch=main#42ceab31e6a5be018682392565d2169b7096fe02" dependencies = [ "erg_common", "erg_compiler", @@ -273,8 +273,8 @@ dependencies = [ [[package]] name = "erg_common" -version = "0.6.4-nightly.0" -source = "git+https://github.com/erg-lang/erg?branch=main#d8f4d14abd27e89e8b6e8ab441b14d2a0a133fb4" +version = "0.6.4-nightly.1" +source = "git+https://github.com/erg-lang/erg?branch=main#42ceab31e6a5be018682392565d2169b7096fe02" dependencies = [ "backtrace-on-stack-overflow", "hermit-abi", @@ -284,8 +284,8 @@ dependencies = [ [[package]] name = "erg_compiler" -version = "0.6.4-nightly.0" -source = "git+https://github.com/erg-lang/erg?branch=main#d8f4d14abd27e89e8b6e8ab441b14d2a0a133fb4" +version = "0.6.4-nightly.1" +source = "git+https://github.com/erg-lang/erg?branch=main#42ceab31e6a5be018682392565d2169b7096fe02" dependencies = [ "erg_common", "erg_parser", @@ -293,8 +293,8 @@ dependencies = [ [[package]] name = "erg_parser" -version = "0.6.4-nightly.0" -source = "git+https://github.com/erg-lang/erg?branch=main#d8f4d14abd27e89e8b6e8ab441b14d2a0a133fb4" +version = "0.6.4-nightly.1" +source = "git+https://github.com/erg-lang/erg?branch=main#42ceab31e6a5be018682392565d2169b7096fe02" dependencies = [ "erg_common", "unicode-xid 0.2.4", @@ -598,7 +598,7 @@ dependencies = [ [[package]] name = "py2erg" -version = "0.0.4" +version = "0.0.5" dependencies = [ "erg_common", "erg_compiler", @@ -607,7 +607,7 @@ dependencies = [ [[package]] name = "pylyzer" -version = "0.0.4" +version = "0.0.5" dependencies = [ "els", "erg_common", diff --git a/Cargo.toml b/Cargo.toml index be7950d..52dfda8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = [ ] [workspace.package] -version = "0.0.4" +version = "0.0.5" authors = ["Shunsuke Shibayama "] license = "MIT OR Apache-2.0" edition = "2021" @@ -26,9 +26,9 @@ repository = "https://github.com/mtshiba/pylyzer" # erg_compiler = "0.6.1" # els = "0.1.13" rustpython-parser = "0.1.2" -erg_compiler = { version = "0.6.4-nightly.0", git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] } -erg_common = { version = "0.6.4-nightly.0", git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] } -els = { version = "0.1.16-nightly.0", git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible"] } +erg_compiler = { version = "0.6.4-nightly.1", git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] } +erg_common = { version = "0.6.4-nightly.1", git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] } +els = { version = "0.1.16-nightly.1", git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible"] } [features] debug = ["erg_compiler/debug", "erg_common/debug", "py2erg/debug"] @@ -38,7 +38,7 @@ erg_compiler = { workspace = true } erg_common = { workspace = true } els = { workspace = true } rustpython-parser = { workspace = true } -py2erg = { version = "0.0.4", path = "./crates/py2erg" } +py2erg = { version = "0.0.5", path = "./crates/py2erg" } [lib] path = "src/lib.rs"