forked from Rust-related/RustPython
16 lines
418 B
TOML
16 lines
418 B
TOML
[package]
|
|
name = "rustpython-bytecode"
|
|
description = "RustPython specific bytecode."
|
|
version = "0.1.0"
|
|
authors = ["RustPython Team"]
|
|
edition = "2018"
|
|
repository = "https://github.com/RustPython/RustPython"
|
|
license = "MIT"
|
|
|
|
|
|
[dependencies]
|
|
bitflags = "1.1"
|
|
num-bigint = { version = "0.2", features = ["serde"] }
|
|
num-complex = { version = "0.2", features = ["serde"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|