build: update deps

This commit is contained in:
Shunsuke Shibayama 2023-05-04 20:07:54 +09:00
parent 5788503e05
commit fae74465fb
3 changed files with 10 additions and 8 deletions

12
Cargo.lock generated
View File

@ -274,9 +274,9 @@ dependencies = [
[[package]]
name = "erg_common"
version = "0.6.12-nightly.6"
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c34723b8e8f53e11205330924f36425d52b2ebae66a5d45e889fb83a01be4fb"
checksum = "66b4ff41ccf97d9c20f0e94a45c50ffc26f612cbb09202179f5df9dc3bca3283"
dependencies = [
"backtrace-on-stack-overflow",
"hermit-abi",
@ -286,9 +286,9 @@ dependencies = [
[[package]]
name = "erg_compiler"
version = "0.6.12-nightly.6"
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "beef1255c0fe34d84892d6b3eecd4506a77ba71d24a8b143795f1c5b2e4f6877"
checksum = "37116c511348405b7f8c16a4083115fd0950715dbf8b09e2396b05356933f071"
dependencies = [
"erg_common",
"erg_parser",
@ -296,9 +296,9 @@ dependencies = [
[[package]]
name = "erg_parser"
version = "0.6.12-nightly.6"
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a16c93aca8cc69dd920dd3a6fb0c6ab9054bdfe3e46ada0ea89dce8896617296"
checksum = "7320f26c6d1eec2f30133ba32799feee9a329953e0635b369071b61b1ca4b715"
dependencies = [
"erg_common",
"unicode-xid 0.2.4",

View File

@ -22,8 +22,8 @@ edition = "2021"
repository = "https://github.com/mtshiba/pylyzer"
[workspace.dependencies]
erg_common = { version = "0.6.12-nightly.6", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.12-nightly.6", features = ["py_compat", "els"] }
erg_common = { version = "0.6.12", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.12", features = ["py_compat", "els"] }
els = { version = "0.1.24-nightly.6", features = ["py_compat"] }
rustpython-parser = "0.1.2"
# erg_compiler = { git = "https://github.com/erg-lang/erg", branch = "main", features = ["py_compat", "els"] }

View File

@ -23,4 +23,6 @@ _: Callable[[Union[int, str]], None] = f # OK
_: Callable[[Union[int, str]], None] = g # ERR
_: Iterable[int] = [1] # OK
_: Iterable[int] = {1} # OK
_: Iterable[int] = (1, 2) # OK
_: Iterable[int] = ["a"] # ERR