Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Nov 3, 2023
1 parent 2f919b2 commit 12a4c4c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
16 changes: 12 additions & 4 deletions Cargo.lock

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

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

[workspace.dependencies]
# erg_common = { version = "0.6.22-nightly.1", features = ["py_compat", "els"] }
# erg_compiler = { version = "0.6.22-nightly.1", features = ["py_compat", "els"] }
# els = { version = "0.1.34-nightly.1", features = ["py_compat"] }
erg_common = { version = "0.6.25-nightly.1", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.25-nightly.1", features = ["py_compat", "els"] }
els = { version = "0.1.37-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"] }
# 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"] }
# 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"] }

[features]
debug = ["erg_compiler/debug", "erg_common/debug", "py2erg/debug"]
Expand Down
2 changes: 1 addition & 1 deletion crates/py2erg/gen_decl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::io::{BufWriter, Write};
use erg_common::io::Input;
use erg_common::log;
use erg_common::traits::LimitedDisplay;
use erg_compiler::context::register::{CheckStatus, PylyzerStatus};
use erg_compiler::build_package::{CheckStatus, PylyzerStatus};
use erg_compiler::hir::{Expr, HIR};
use erg_compiler::ty::value::{GenTypeObj, TypeObj};
use erg_compiler::ty::{HasType, Type};
Expand Down
3 changes: 1 addition & 2 deletions src/analyze.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ use erg_common::traits::{New, ExitStatus, Runnable, Stream};
use erg_common::Str;
use erg_compiler::GenericHIRBuilder;
use erg_compiler::artifact::{BuildRunnable, Buildable, CompleteArtifact, IncompleteArtifact};
use erg_compiler::build_package::GenericPackageBuilder;
use erg_compiler::context::register::CheckStatus;
use erg_compiler::build_package::{GenericPackageBuilder, CheckStatus};
use erg_compiler::context::ModuleContext;
use erg_compiler::erg_parser::ast::{Module, AST};
use erg_compiler::erg_parser::build_ast::ASTBuildable;
Expand Down

0 comments on commit 12a4c4c

Please sign in to comment.