RustPython-Parser/codegen/Cargo.toml
2023-03-01 20:47:21 -06:00

25 lines
713 B
TOML

[package]
name = "rustpython-codegen"
version = "0.2.0"
description = "Compiler for python code into bytecode for the rustpython VM."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"
license = "MIT"
edition = "2021"
[dependencies]
rustpython-ast = { path = "../ast", features = ["unparse"] }
rustpython-compiler-core = { path = "../core", version = "0.2.0" }
ahash = { workspace = true }
bitflags = { workspace = true }
indexmap = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
num-complex = { workspace = true }
num-traits = { workspace = true }
[dev-dependencies]
rustpython-parser = { path = "../parser" }
insta = { workspace = true }