mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-04 18:58:31 +00:00
reorganize compiler crates
This commit is contained in:
parent
3351b4408b
commit
060d153bb3
82 changed files with 12368 additions and 164 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -1,22 +1,12 @@
|
|||
[package]
|
||||
name = "rustpython-compiler-core"
|
||||
name = "rustpython-compiler"
|
||||
version = "0.1.2"
|
||||
description = "Compiler for python code into bytecode for the rustpython VM."
|
||||
description = "A usability wrapper around rustpython-parser and rustpython-compiler-core"
|
||||
authors = ["RustPython Team"]
|
||||
repository = "https://github.com/RustPython/RustPython"
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
indexmap = "1.8.1"
|
||||
itertools = "0.10.3"
|
||||
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
|
||||
rustpython-ast = { path = "../ast", features = ["unparse"] }
|
||||
num-complex = { version = "0.4.0", features = ["serde"] }
|
||||
num-traits = "0.2.14"
|
||||
log = "0.4.16"
|
||||
ahash = "0.7.6"
|
||||
|
||||
[dev-dependencies]
|
||||
rustpython-parser = { path = "../parser" }
|
||||
insta = "1.14.0"
|
||||
thiserror = "1.0"
|
||||
rustpython-codegen = { path = "codegen" }
|
||||
rustpython-parser = { path = "parser" }
|
||||
rustpython-bytecode = { path = "bytecode" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue