mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
* bump to 3.13.1 * fix some tests * strip left whitespace from doc * remove specific difflib test that was causing issues * fix test_enum Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
32 lines
850 B
TOML
32 lines
850 B
TOML
[package]
|
|
name = "rustpython-codegen"
|
|
description = "Compiler for python code into bytecode for the rustpython VM."
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
|
|
[dependencies]
|
|
rustpython-ast = { workspace = true, features=["unparse", "constant-optimization"] }
|
|
rustpython-common = { workspace = true }
|
|
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 }
|
|
|
|
[lints]
|
|
workspace = true |