Skip to content

Commit

Permalink
Use rustpython from git
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaReiser committed Apr 14, 2023
1 parent 09cbc45 commit 5161fdc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ rustflags = [
# This is a workaround to configure lints for the entire workspace, pending the ability to configure this via TOML.
# See: `https://github.com/rust-lang/cargo/issues/5034`
# `https://github.com/EmbarkStudios/rust-ecosystem/issues/22#issuecomment-947011395`
# "-Dunsafe_code",
"-Dunsafe_code",
"-Wclippy::pedantic",
# Allowed pedantic lints
"-Wclippy::char_lit_as_u8",
Expand Down
5 changes: 5 additions & 0 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 @@ -30,13 +30,13 @@ path-absolutize = { version = "3.0.14" }
proc-macro2 = { version = "1.0.51" }
quote = { version = "1.0.23" }
regex = { version = "1.7.1" }
ruff_text_size = { git = "https://github.com/charliermarsh/RustPython.git", rev = "834a2c356bbb31c33af900d9d02ce0228a0f6145" }
rustc-hash = { version = "1.1.0" }
ruff_text_size = { path = "../RustPython/ruff_text_size" }
rustpython-common = { path = "../RustPython/common"}
rustpython-common = { git = "https://github.com/charliermarsh/RustPython.git", rev = "834a2c356bbb31c33af900d9d02ce0228a0f6145" }
rustpython-parser = { features = [
"lalrpop",
"serde",
], path = "../RustPython/compiler/parser" }
], git = "https://github.com/charliermarsh/RustPython.git", rev = "834a2c356bbb31c33af900d9d02ce0228a0f6145" }
schemars = { version = "0.8.12" }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = { version = "1.0.93", features = ["preserve_order"] }
Expand Down

0 comments on commit 5161fdc

Please sign in to comment.