mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Compare commits
1 Commits
specializa
...
v0.1.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5343c0bd0b |
16
Cargo.lock
generated
16
Cargo.lock
generated
@@ -1548,7 +1548,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython"
|
name = "rustpython"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"clap",
|
"clap",
|
||||||
@@ -1567,7 +1567,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython-bytecode"
|
name = "rustpython-bytecode"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bincode",
|
"bincode",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@@ -1580,7 +1580,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython-compiler"
|
name = "rustpython-compiler"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec 0.5.1",
|
"arrayvec 0.5.1",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
@@ -1593,7 +1593,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython-derive"
|
name = "rustpython-derive"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"maplit",
|
"maplit",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
@@ -1606,7 +1606,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython-parser"
|
name = "rustpython-parser"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lalrpop",
|
"lalrpop",
|
||||||
"lalrpop-util",
|
"lalrpop-util",
|
||||||
@@ -1620,7 +1620,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython-vm"
|
name = "rustpython-vm"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"adler32",
|
"adler32",
|
||||||
"arr_macro",
|
"arr_macro",
|
||||||
@@ -1710,14 +1710,14 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython_freeze"
|
name = "rustpython_freeze"
|
||||||
version = "0.1.0-pre-alpha.2"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rustpython-vm",
|
"rustpython-vm",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpython_wasm"
|
name = "rustpython_wasm"
|
||||||
version = "0.1.0-pre-alpha.2"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"futures",
|
"futures",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython"
|
name = "rustpython"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
authors = ["RustPython Team"]
|
authors = ["RustPython Team"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A python interpreter written in rust."
|
description = "A python interpreter written in rust."
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython-bytecode"
|
name = "rustpython-bytecode"
|
||||||
description = "RustPython specific bytecode."
|
description = "RustPython specific bytecode."
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
authors = ["RustPython Team"]
|
authors = ["RustPython Team"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
repository = "https://github.com/RustPython/RustPython"
|
repository = "https://github.com/RustPython/RustPython"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython-compiler"
|
name = "rustpython-compiler"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = "Compiler for python code into bytecode for the rustpython VM."
|
description = "Compiler for python code into bytecode for the rustpython VM."
|
||||||
authors = ["RustPython Team"]
|
authors = ["RustPython Team"]
|
||||||
repository = "https://github.com/RustPython/RustPython"
|
repository = "https://github.com/RustPython/RustPython"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython-derive"
|
name = "rustpython-derive"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = "Rust language extensions and macros specific to rustpython."
|
description = "Rust language extensions and macros specific to rustpython."
|
||||||
authors = ["RustPython Team"]
|
authors = ["RustPython Team"]
|
||||||
repository = "https://github.com/RustPython/RustPython"
|
repository = "https://github.com/RustPython/RustPython"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython_freeze"
|
name = "rustpython_freeze"
|
||||||
version = "0.1.0-pre-alpha.2"
|
version = "0.1.2"
|
||||||
authors = ["RustPython Team"]
|
authors = ["RustPython Team"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to frozen executable"
|
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to frozen executable"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython-parser"
|
name = "rustpython-parser"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = "Parser for python code."
|
description = "Parser for python code."
|
||||||
authors = [ "RustPython Team" ]
|
authors = [ "RustPython Team" ]
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython-vm"
|
name = "rustpython-vm"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = "Rust Python virtual machine."
|
description = "Rust Python virtual machine."
|
||||||
authors = ["RustPython Team"]
|
authors = ["RustPython Team"]
|
||||||
repository = "https://github.com/RustPython/RustPython"
|
repository = "https://github.com/RustPython/RustPython"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpython_wasm"
|
name = "rustpython_wasm"
|
||||||
version = "0.1.0-pre-alpha.2"
|
version = "0.1.2"
|
||||||
authors = ["RustPython Team"]
|
authors = ["RustPython Team"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to WASM"
|
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to WASM"
|
||||||
|
|||||||
Reference in New Issue
Block a user