build: update version (v0.0.34)

This commit is contained in:
Shunsuke Shibayama 2023-07-03 01:06:17 +09:00
parent 7384e17243
commit 51dbe6d7ec
2 changed files with 15 additions and 15 deletions

20
Cargo.lock generated
View File

@ -252,9 +252,9 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]]
name = "els"
version = "0.1.28-nightly.3"
version = "0.1.28-nightly.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4917d943ed6393c53401367e774120a2e08ce1cfe53b7914567fdba685a6861"
checksum = "891204962e101f5c26b0f8e0bb3352a8eb191d6ff78439feca9cb4c0a7ec80d6"
dependencies = [
"erg_common",
"erg_compiler",
@ -274,9 +274,9 @@ dependencies = [
[[package]]
name = "erg_common"
version = "0.6.16-nightly.3"
version = "0.6.16-nightly.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9d3beb81ac5707f13075ad3f70a5cfed98dcb7c634ea43f75dd419afd3b1a45"
checksum = "58524ced0433c21150ee31cc846b16afe1587ab74ff877a8023adfa7890831d2"
dependencies = [
"backtrace-on-stack-overflow",
"parking_lot",
@ -285,9 +285,9 @@ dependencies = [
[[package]]
name = "erg_compiler"
version = "0.6.16-nightly.3"
version = "0.6.16-nightly.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d2a303d0c23c787b2d5f50bb63d62cfb702116151938870fdd8b83e7369a677"
checksum = "4b159fe49c8a5e30f5a894bce42613a65df848bc3d1f737525b46f9186a3eb33"
dependencies = [
"erg_common",
"erg_parser",
@ -295,9 +295,9 @@ dependencies = [
[[package]]
name = "erg_parser"
version = "0.6.16-nightly.3"
version = "0.6.16-nightly.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15ec3de89acccb87dd23e89c929824ed8cc3ffd5ed6bfaad41d7786b9f0a5a72"
checksum = "4fee31101c6b7796f6cc936b08aa66de814024a79bb585eebc8f287404c6035f"
dependencies = [
"erg_common",
"unicode-xid 0.2.4",
@ -640,7 +640,7 @@ dependencies = [
[[package]]
name = "py2erg"
version = "0.0.33"
version = "0.0.34"
dependencies = [
"erg_common",
"erg_compiler",
@ -649,7 +649,7 @@ dependencies = [
[[package]]
name = "pylyzer"
version = "0.0.33"
version = "0.0.34"
dependencies = [
"els",
"erg_common",

View File

@ -15,16 +15,16 @@ members = [
]
[workspace.package]
version = "0.0.33"
version = "0.0.34"
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/mtshiba/pylyzer"
[workspace.dependencies]
erg_common = { version = "0.6.16-nightly.3", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.16-nightly.3", features = ["py_compat", "els"] }
els = { version = "0.1.28-nightly.3", features = ["py_compat"] }
erg_common = { version = "0.6.16-nightly.4", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.16-nightly.4", features = ["py_compat", "els"] }
els = { version = "0.1.28-nightly.4", features = ["py_compat"] }
rustpython-parser = "0.1.2"
# erg_compiler = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compat", "els"] }
# erg_common = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compat", "els"] }
@ -45,7 +45,7 @@ erg_compiler = { workspace = true }
erg_common = { workspace = true }
els = { workspace = true }
rustpython-parser = { workspace = true }
py2erg = { version = "0.0.33", path = "./crates/py2erg" }
py2erg = { version = "0.0.34", path = "./crates/py2erg" }
[lib]
path = "src/lib.rs"