mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
* Add `rapidhash` to list of dependencies * Use `rapidhash::quality::RandomState` in `codegen` crate * Use `rapidhash::quality::RandomState` in `stdlib` crate * Use `rapidhash::quality::RandomState` in `vm` crate * Remove `ahash` from lists of dependencies
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
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
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["thiserror/std", "itertools/use_std"]
|
|
|
|
[dependencies]
|
|
rustpython-compiler-core = { workspace = true }
|
|
rustpython-literal = {workspace = true }
|
|
rustpython-wtf8 = { workspace = true }
|
|
ruff_python_ast = { workspace = true }
|
|
ruff_text_size = { workspace = true }
|
|
|
|
bitflags = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
num-complex = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
malachite-bigint = { workspace = true }
|
|
memchr = { workspace = true }
|
|
rapidhash = { workspace = true }
|
|
unicode_names2 = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
ruff_python_parser = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|