Skip to content

Commit bc1717b

Browse files

File tree

9 files changed

+30
-27
lines changed

9 files changed

+30
-27
lines changed

Cargo.lock

Lines changed: 21 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["RustPython Team"]
55
edition = "2018"
66
description = "A python interpreter written in rust."

bytecode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustpython-bytecode"
33
description = "RustPython specific bytecode."
4-
version = "0.1.1"
4+
version = "0.1.2"
55
authors = ["RustPython Team"]
66
edition = "2018"
77
repository = "https://github.com/RustPython/RustPython"

compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-compiler"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Compiler for python code into bytecode for the rustpython VM."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-derive"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Rust language extensions and macros specific to rustpython."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"

examples/freeze/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython_freeze"
3-
version = "0.1.0-pre-alpha.2"
3+
version = "0.1.2"
44
authors = ["RustPython Team"]
55
license = "MIT"
66
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to frozen executable"

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-parser"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Parser for python code."
55
authors = [ "RustPython Team" ]
66
build = "build.rs"

vm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-vm"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Rust Python virtual machine."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -71,7 +71,7 @@ smallbox = "0.8"
7171
bstr = "0.2.12"
7272
crossbeam-utils = "0.7"
7373
generational-arena = "0.2"
74-
parking_lot = { git = "https://github.com/Amanieu/parking_lot" } # TODO: use published version
74+
parking_lot = "0.11"
7575
thread_local = "1.0"
7676

7777
## unicode stuff

wasm/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython_wasm"
3-
version = "0.1.0-pre-alpha.2"
3+
version = "0.1.2"
44
authors = ["RustPython Team"]
55
license = "MIT"
66
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to WASM"

0 commit comments

Comments
 (0)