update version (v0.0.8)

This commit is contained in:
Shunsuke Shibayama 2023-02-24 17:30:31 +09:00
parent 30d1e32aea
commit 062ea928b6
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.18"
source = "git+https://github.com/erg-lang/erg?branch=main#f604338d996fdee827c51386e23b26b6c0159389"
version = "0.1.19-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc21e1a7815740ad6debfd616bd9f5551dc4b10fa1b4e0e2cec42ddf57dbc7d8"
dependencies = [
"erg_common",
"erg_compiler",
@ -273,8 +274,9 @@ dependencies = [
[[package]]
name = "erg_common"
version = "0.6.6"
source = "git+https://github.com/erg-lang/erg?branch=main#f604338d996fdee827c51386e23b26b6c0159389"
version = "0.6.7-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8d2357638900c5d5f2ee751b4fd2254932fda6a1c50939ffbc8a7acd5903ce9"
dependencies = [
"backtrace-on-stack-overflow",
"hermit-abi",
@ -284,8 +286,9 @@ dependencies = [
[[package]]
name = "erg_compiler"
version = "0.6.6"
source = "git+https://github.com/erg-lang/erg?branch=main#f604338d996fdee827c51386e23b26b6c0159389"
version = "0.6.7-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "682faa374e190771be607591426293f6fb56f22f8ed08c3d424a27615bb261cd"
dependencies = [
"erg_common",
"erg_parser",
@ -293,8 +296,9 @@ dependencies = [
[[package]]
name = "erg_parser"
version = "0.6.6"
source = "git+https://github.com/erg-lang/erg?branch=main#f604338d996fdee827c51386e23b26b6c0159389"
version = "0.6.7-nightly.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3e3ee6c10e35b83fe0c6c675ab1697aa72d175e4d10cbcf9a8057485192a604"
dependencies = [
"erg_common",
"unicode-xid 0.2.4",
@ -598,7 +602,7 @@ dependencies = [
[[package]]
name = "py2erg"
version = "0.0.7"
version = "0.0.8"
dependencies = [
"erg_common",
"erg_compiler",
@ -607,7 +611,7 @@ dependencies = [
[[package]]
name = "pylyzer"
version = "0.0.7"
version = "0.0.8"
dependencies = [
"els",
"erg_common",

View File

@ -15,20 +15,20 @@ members = [
]
[workspace.package]
version = "0.0.7"
version = "0.0.8"
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.5-nightly.1", features = ["py_compatible", "els"] }
# erg_compiler = { version = "0.6.5-nightly.1", features = ["py_compatible", "els"] }
# els = { version = "0.1.17-nightly.1", features = ["py_compatible"] }
erg_common = { version = "0.6.7-nightly.0", features = ["py_compatible", "els"] }
erg_compiler = { version = "0.6.7-nightly.0", features = ["py_compatible", "els"] }
els = { version = "0.1.19-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"]
@ -39,7 +39,7 @@ erg_compiler = { workspace = true }
erg_common = { workspace = true }
els = { workspace = true }
rustpython-parser = { workspace = true }
py2erg = { version = "0.0.7", path = "./crates/py2erg" }
py2erg = { version = "0.0.8", path = "./crates/py2erg" }
[lib]
path = "src/lib.rs"