mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
22 lines
593 B
TOML
22 lines
593 B
TOML
[package]
|
|
name = "rustpython_wasm"
|
|
version = "0.1.0"
|
|
authors = ["Ryan Liddle <ryan@rmliddle.com>"]
|
|
license = "MIT"
|
|
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to WASM"
|
|
repository = "https://github.com/RustPython/RustPython/tree/master/wasm/lib"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
rustpython_parser = {path = "../../parser"}
|
|
rustpython_vm = {path = "../../vm"}
|
|
cfg-if = "0.1.2"
|
|
wasm-bindgen = "0.2"
|
|
js-sys = "0.3"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [ "console", "Document", "Element", "HtmlTextAreaElement", "Window" ]
|