mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-03 18:29:04 +00:00
17 lines
518 B
TOML
17 lines
518 B
TOML
[package]
|
|
name = "rustpython-compiler"
|
|
version = "0.1.2"
|
|
description = "Compiler for python code into bytecode for the rustpython VM."
|
|
authors = ["RustPython Team"]
|
|
repository = "https://github.com/RustPython/RustPython"
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
indexmap = "1.0"
|
|
itertools = "0.9"
|
|
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
|
|
rustpython-parser = { path = "../parser", version = "0.1.1" }
|
|
num-complex = { version = "0.3", features = ["serde"] }
|
|
log = "0.4"
|
|
arrayvec = "0.5"
|