mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
43 lines
1001 B
TOML
43 lines
1001 B
TOML
[package]
|
|
name = "rustpython"
|
|
version = "0.1.0"
|
|
authors = ["RustPython Team"]
|
|
edition = "2018"
|
|
description = "A python interpreter written in rust."
|
|
repository = "https://github.com/RustPython/RustPython"
|
|
license = "MIT"
|
|
|
|
[workspace]
|
|
members = [".", "derive", "vm", "wasm/lib", "parser", "compiler", "bytecode"]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
path = "./benchmarks/bench.rs"
|
|
|
|
[features]
|
|
default = ["rustpython-vm/use-proc-macro-hack"]
|
|
flame-it = ["rustpython-vm/flame-it", "flame", "flamescope"]
|
|
|
|
[dependencies]
|
|
log="0.4.1"
|
|
env_logger="0.5.10"
|
|
clap = "2.31.2"
|
|
rustpython-compiler = {path = "compiler", version = "0.1.0"}
|
|
rustpython-parser = {path = "parser", version = "0.1.0"}
|
|
rustpython-vm = {path = "vm", version = "0.1.0"}
|
|
xdg = "2.2.0"
|
|
|
|
flame = { version = "0.2", optional = true }
|
|
flamescope = { version = "0.1", optional = true }
|
|
|
|
[target.'cfg(not(target_os = "redox"))'.dependencies]
|
|
rustyline = "4.1.0"
|
|
|
|
|
|
[dev-dependencies.cpython]
|
|
version = "0.2"
|
|
|
|
[[bin]]
|
|
name = "rustpython"
|
|
path = "src/main.rs"
|