Skip to content

Commit

Permalink
build: update version (v0.0.42)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Sep 2, 2023
1 parent 27ee892 commit 95e6fb2
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 55 deletions.
89 changes: 44 additions & 45 deletions Cargo.lock

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

22 changes: 12 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,23 @@ members = [
]

[workspace.package]
version = "0.0.33"
version = "0.0.42"
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.15", features = ["py_compat", "els"] }
# erg_compiler = { version = "0.6.15", features = ["py_compat", "els"] }
# els = { version = "0.1.27", features = ["py_compat"] }
rustpython-parser = { git = "https://github.com/RustPython/Parser", version = "0.2.0", features = ["all-nodes-with-ranges", "location"] }
rustpython-ast = { git = "https://github.com/RustPython/Parser", version = "0.2.0", features = ["all-nodes-with-ranges", "location"] }
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"] }
els = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compat"] }
erg_common = { version = "0.6.20-nightly.0", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.20-nightly.0", features = ["py_compat", "els"] }
els = { version = "0.1.32-nightly.0", features = ["py_compat"] }
rustpython-parser = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
rustpython-ast = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
# rustpython-parser = { git = "https://github.com/RustPython/Parser", version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
# rustpython-ast = { git = "https://github.com/RustPython/Parser", version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
# 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"] }
# els = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compat"] }
# erg_compiler = { path = "../erg/crates/erg_compiler", features = ["py_compat", "els"] }
# erg_common = { path = "../erg/crates/erg_common", features = ["py_compat", "els"] }
# els = { path = "../erg/crates/els", features = ["py_compat"] }
Expand All @@ -47,7 +49,7 @@ erg_common = { workspace = true }
els = { workspace = true }
rustpython-parser = { workspace = true }
rustpython-ast = { workspace = true }
py2erg = { version = "0.0.33", path = "./crates/py2erg" }
py2erg = { version = "0.0.42", path = "./crates/py2erg" }

[lib]
path = "src/lib.rs"

0 comments on commit 95e6fb2

Please sign in to comment.