forked from Rust-related/RustPython
rustpython@0.1.2 rustpython-bytecode@0.1.2 rustpython-compiler@0.1.2 rustpython-derive@0.1.2 rustpython-parser@0.1.2 rustpython-vm@0.1.2 rustpython_freeze@0.1.2 rustpython_wasm@0.1.2 Generated by cargo-workspaces
55 lines
1.5 KiB
TOML
55 lines
1.5 KiB
TOML
[package]
|
|
name = "rustpython"
|
|
version = "0.1.2"
|
|
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", "examples/freeze"]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
path = "./benchmarks/bench.rs"
|
|
|
|
[features]
|
|
flame-it = ["rustpython-vm/flame-it", "flame", "flamescope"]
|
|
freeze-stdlib = ["rustpython-vm/freeze-stdlib"]
|
|
|
|
ssl = ["rustpython-vm/ssl"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
env_logger = "0.7"
|
|
clap = "2.33"
|
|
rustpython-compiler = {path = "compiler", version = "0.1.1"}
|
|
rustpython-parser = {path = "parser", version = "0.1.1"}
|
|
rustpython-vm = {path = "vm", version = "0.1.1"}
|
|
dirs = { package = "dirs-next", version = "1.0" }
|
|
num-traits = "0.2.8"
|
|
cfg-if = "0.1"
|
|
|
|
flame = { version = "0.2", optional = true }
|
|
flamescope = { version = "0.1", optional = true }
|
|
|
|
[target.'cfg(not(target_os = "wasi"))'.dependencies]
|
|
rustyline = "6.0"
|
|
|
|
|
|
[dev-dependencies.cpython]
|
|
version = "0.2"
|
|
|
|
[[bin]]
|
|
name = "rustpython"
|
|
path = "src/main.rs"
|
|
|
|
[patch.crates-io]
|
|
# REDOX START, Uncommment when you want to compile/check with redoxer
|
|
# # following patches are just waiting on a new version to be released to crates.io
|
|
# nix = { git = "https://github.com/nix-rust/nix" }
|
|
# crossbeam-utils = { git = "https://github.com/crossbeam-rs/crossbeam" }
|
|
# socket2 = { git = "https://github.com/alexcrichton/socket2-rs" }
|
|
# REDOX END
|