forked from Rust-related/RustPython
27 lines
762 B
TOML
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 }
|