Files
RustPython/compiler/codegen/Cargo.toml
Jeong YunWon 1208416b92 0.3.0 release
2023-09-06 18:49:55 +09:00

27 lines
762 B
TOML

[package]
name = "rustpython-codegen"
version = "0.3.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 = { workspace = true, features=["unparse", "constant-optimization"] }
rustpython-parser-core = { workspace = true }
rustpython-compiler-core = { workspace = true }
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 = { workspace = true }
insta = { workspace = true }