Compare commits

...

1 Commits
dev ... v0.1.2

Author SHA1 Message Date
Noah
5343c0bd0b Release 0.1.2
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
2020-06-21 18:50:01 -05:00
9 changed files with 16 additions and 16 deletions

16
Cargo.lock generated
View File

@@ -1548,7 +1548,7 @@ dependencies = [
[[package]]
name = "rustpython"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"cfg-if",
"clap",
@@ -1567,7 +1567,7 @@ dependencies = [
[[package]]
name = "rustpython-bytecode"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"bincode",
"bitflags",
@@ -1580,7 +1580,7 @@ dependencies = [
[[package]]
name = "rustpython-compiler"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"arrayvec 0.5.1",
"indexmap",
@@ -1593,7 +1593,7 @@ dependencies = [
[[package]]
name = "rustpython-derive"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"maplit",
"once_cell",
@@ -1606,7 +1606,7 @@ dependencies = [
[[package]]
name = "rustpython-parser"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"lalrpop",
"lalrpop-util",
@@ -1620,7 +1620,7 @@ dependencies = [
[[package]]
name = "rustpython-vm"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"adler32",
"arr_macro",
@@ -1710,14 +1710,14 @@ dependencies = [
[[package]]
name = "rustpython_freeze"
version = "0.1.0-pre-alpha.2"
version = "0.1.2"
dependencies = [
"rustpython-vm",
]
[[package]]
name = "rustpython_wasm"
version = "0.1.0-pre-alpha.2"
version = "0.1.2"
dependencies = [
"cfg-if",
"futures",

View File

@@ -1,6 +1,6 @@
[package]
name = "rustpython"
version = "0.1.1"
version = "0.1.2"
authors = ["RustPython Team"]
edition = "2018"
description = "A python interpreter written in rust."

View File

@@ -1,7 +1,7 @@
[package]
name = "rustpython-bytecode"
description = "RustPython specific bytecode."
version = "0.1.1"
version = "0.1.2"
authors = ["RustPython Team"]
edition = "2018"
repository = "https://github.com/RustPython/RustPython"

View File

@@ -1,6 +1,6 @@
[package]
name = "rustpython-compiler"
version = "0.1.1"
version = "0.1.2"
description = "Compiler for python code into bytecode for the rustpython VM."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"

View File

@@ -1,6 +1,6 @@
[package]
name = "rustpython-derive"
version = "0.1.1"
version = "0.1.2"
description = "Rust language extensions and macros specific to rustpython."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"

View File

@@ -1,6 +1,6 @@
[package]
name = "rustpython_freeze"
version = "0.1.0-pre-alpha.2"
version = "0.1.2"
authors = ["RustPython Team"]
license = "MIT"
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to frozen executable"

View File

@@ -1,6 +1,6 @@
[package]
name = "rustpython-parser"
version = "0.1.1"
version = "0.1.2"
description = "Parser for python code."
authors = [ "RustPython Team" ]
build = "build.rs"

View File

@@ -1,6 +1,6 @@
[package]
name = "rustpython-vm"
version = "0.1.1"
version = "0.1.2"
description = "Rust Python virtual machine."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"

View File

@@ -1,6 +1,6 @@
[package]
name = "rustpython_wasm"
version = "0.1.0-pre-alpha.2"
version = "0.1.2"
authors = ["RustPython Team"]
license = "MIT"
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to WASM"