mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-03 10:23:22 +00:00
22 lines
600 B
TOML
22 lines
600 B
TOML
[package]
|
|
name = "rustpython-compiler-core"
|
|
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.10.0"
|
|
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
|
|
rustpython-ast = { path = "../ast" }
|
|
num-complex = { version = "0.4.0", features = ["serde"] }
|
|
num-traits = "0.2"
|
|
log = "0.4"
|
|
ahash = "0.7.2"
|
|
|
|
[dev-dependencies]
|
|
rustpython-parser = { path = "../parser" }
|
|
insta = "1.7.0"
|