Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Mar 12, 2024
1 parent 9fd1bf3 commit e8c39f3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ edition = "2021"
repository = "https://github.com/mtshiba/pylyzer"

[workspace.dependencies]
erg_common = { version = "0.6.32", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.32", features = ["py_compat", "els"] }
els = { version = "0.1.44", features = ["py_compat"] }
erg_common = { version = "0.6.33-nightly.1", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.33-nightly.1", features = ["py_compat", "els"] }
els = { version = "0.1.45-nightly.1", 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"] }
Expand Down
6 changes: 5 additions & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ OPTIONS
pub(crate) fn parse_args() -> ErgConfig {
let mut args = env::args();
args.next(); // "pylyzer"
let mut cfg = ErgConfig::default();
let mut cfg = ErgConfig {
effect_check: false,
ownership_check: false,
..ErgConfig::default()
};
while let Some(arg) = args.next() {
match &arg[..] {
"--" => {
Expand Down

0 comments on commit e8c39f3

Please sign in to comment.