build: update version (v0.0.11)

This commit is contained in:
Shunsuke Shibayama 2023-03-13 17:47:37 +09:00
parent 5dcb783bfc
commit 6a2afdef2f
2 changed files with 22 additions and 18 deletions

24
Cargo.lock generated
View file

@ -252,8 +252,9 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]]
name = "els"
version = "0.1.19"
source = "git+https://github.com/erg-lang/erg?branch=main#5b65611c22af9679c4636946ae99180527dff7ad"
version = "0.1.20-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ebd4f6abe5f42affe560a4d2d70240558406311aafa6f0d3dcc90d7c7edbdf1"
dependencies = [
"erg_common",
"erg_compiler",
@ -273,8 +274,9 @@ dependencies = [
[[package]]
name = "erg_common"
version = "0.6.7"
source = "git+https://github.com/erg-lang/erg?branch=main#5b65611c22af9679c4636946ae99180527dff7ad"
version = "0.6.8-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3483797e9889dd1b54f858eb22540cfe6826e6bb188a129b60c93d68ff7ed2e3"
dependencies = [
"backtrace-on-stack-overflow",
"hermit-abi",
@ -284,8 +286,9 @@ dependencies = [
[[package]]
name = "erg_compiler"
version = "0.6.7"
source = "git+https://github.com/erg-lang/erg?branch=main#5b65611c22af9679c4636946ae99180527dff7ad"
version = "0.6.8-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58a0ecbb398d305167c4aaa21aa76a1481fa5e606ecbe17a6a1ea3596bc4c083"
dependencies = [
"erg_common",
"erg_parser",
@ -293,8 +296,9 @@ dependencies = [
[[package]]
name = "erg_parser"
version = "0.6.7"
source = "git+https://github.com/erg-lang/erg?branch=main#5b65611c22af9679c4636946ae99180527dff7ad"
version = "0.6.8-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0477961cfc3d14fc7564f7fddd23ab497426f62eb7238814b0b98ad7a6567c4a"
dependencies = [
"erg_common",
"unicode-xid 0.2.4",
@ -598,7 +602,7 @@ dependencies = [
[[package]]
name = "py2erg"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"erg_common",
"erg_compiler",
@ -607,7 +611,7 @@ dependencies = [
[[package]]
name = "pylyzer"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"els",
"erg_common",

View file

@ -15,20 +15,20 @@ members = [
]
[workspace.package]
version = "0.0.10"
version = "0.0.11"
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.7", features = ["py_compatible", "els"] }
# erg_compiler = { version = "0.6.7", features = ["py_compatible", "els"] }
# els = { version = "0.1.19", features = ["py_compatible"] }
erg_common = { version = "0.6.8-nightly.0", features = ["py_compatible", "els"] }
erg_compiler = { version = "0.6.8-nightly.0", features = ["py_compatible", "els"] }
els = { version = "0.1.20-nightly.0", features = ["py_compatible"] }
rustpython-parser = "0.1.2"
erg_compiler = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] }
erg_common = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] }
els = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible"] }
# erg_compiler = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] }
# erg_common = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible", "els"] }
# els = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compatible"] }
[features]
debug = ["erg_compiler/debug", "erg_common/debug", "py2erg/debug"]
@ -40,7 +40,7 @@ erg_compiler = { workspace = true }
erg_common = { workspace = true }
els = { workspace = true }
rustpython-parser = { workspace = true }
py2erg = { version = "0.0.10", path = "./crates/py2erg" }
py2erg = { version = "0.0.11", path = "./crates/py2erg" }
[lib]
path = "src/lib.rs"