Skip to content
This repository was archived by the owner on Jul 27, 2023. It is now read-only.

Prepare for moving the parser into the Ruff monorepo #40

Merged
merged 9 commits into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: install ruff
run: python -m pip install ruff
- name: run python lint
run: ruff --ignore=E501 ast --show-source
run: ruff --ignore=E501 ruff_python_ast --show-source

- name: spell checker
uses: streetsidesoftware/cspell-action@v2
Expand Down
11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace.package]
version = "0.2.0"
authors = ["RustPython Team"]
authors = ["RustPython Team", "Charlie Marsh <charlie.r.marsh@gmail.com>"]
edition = "2021"
rust-version = "1.67.1"
description = "Python parser and its dependencies."
Expand All @@ -11,17 +11,16 @@ include = ["LICENSE", "Cargo.toml", "src/**/*.rs"]
[workspace]
resolver = "2"
members = [
"ast", "core", "format", "literal", "parser", "ruff_text_size",
"ruff_python_ast", "literal", "ruff_python_parser", "ruff_text_size",
]

[workspace.dependencies]
rustpython-ast = { path = "ast", default-features = false }
rustpython-parser-core = { path = "core", features = [] }
ruff_python_ast = { path = "ruff_python_ast" }
rustpython-literal = { path = "literal" }
rustpython-format = { path = "format" }
rustpython-parser = { path = "parser", default-features = false }
ruff_text_size = { path = "ruff_text_size" }

anyhow = "1.0.45"
bitflags = "2.3.3"
cfg-if = "1.0"
insta = "1.14.0"
itertools = "0.10.3"
Expand Down
16 changes: 0 additions & 16 deletions ast/Cargo.toml

This file was deleted.

203 changes: 0 additions & 203 deletions ast/src/builtin.rs

This file was deleted.

64 changes: 0 additions & 64 deletions ast/src/impls.rs

This file was deleted.

Loading