Skip to content

Commit 7239229

Browse files
committed
Merge branch 'master' of github.com:RustPython/RustPython into stack-size-calculation
2 parents 8d782b1 + 2d4b15c commit 7239229

File tree

222 files changed

+34425
-1968
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

222 files changed

+34425
-1968
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lib/* linguist-vendored

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["RustPython Team"]
55
edition = "2018"
66
description = "A python interpreter written in rust."
@@ -23,16 +23,15 @@ freeze-stdlib = ["rustpython-vm/freeze-stdlib"]
2323
log = "0.4"
2424
env_logger = "0.6"
2525
clap = "2.33"
26-
rustpython-compiler = {path = "compiler", version = "0.1.0"}
27-
rustpython-parser = {path = "parser", version = "0.1.0"}
28-
rustpython-vm = {path = "vm", version = "0.1.0"}
26+
rustpython-compiler = {path = "compiler", version = "0.1.1"}
27+
rustpython-parser = {path = "parser", version = "0.1.1"}
28+
rustpython-vm = {path = "vm", version = "0.1.1"}
2929
dirs = "2.0"
3030

3131
flame = { version = "0.2", optional = true }
3232
flamescope = { version = "0.1", optional = true }
3333

34-
[target.'cfg(not(target_os = "redox"))'.dependencies]
35-
rustyline = "4.1.0"
34+
rustyline = "=5.0.1"
3635

3736

3837
[dev-dependencies.cpython]
@@ -45,6 +44,5 @@ path = "src/main.rs"
4544
[patch.crates-io]
4645
# REDOX START, Uncommment when you want to compile/check with redoxer
4746
# time = { git = "https://gitlab.redox-os.org/redox-os/time.git", branch = "redox-unix" }
48-
# libc = { git = "https://github.com/AdminXVII/libc", branch = "extra-traits-redox" }
4947
# nix = { git = "https://github.com/AdminXVII/nix", branch = "add-redox-support" }
5048
# REDOX END

Lib/__importlib_util.py

Lines changed: 0 additions & 97 deletions
This file was deleted.

0 commit comments

Comments
 (0)