Skip to content

Commit 079bdbb

Browse files
committed
Upgrade rust to v1.36.0
1 parent 963d56f commit 079bdbb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ environment:
1212
DENO_BUILD_PATH: $(APPVEYOR_BUILD_FOLDER)\target\release
1313
DENO_THIRD_PARTY_PATH: $(APPVEYOR_BUILD_FOLDER)\third_party
1414
RELEASE_ARTIFACT: deno_win_x64.zip
15-
RUST_VERSION: 1.35.0
15+
RUST_VERSION: 1.36.0
1616
RUST_DIR: $(USERPROFILE)\rust-$(RUST_VERSION)
1717
CARGO_HOME: $(RUST_DIR)\cargo
1818
RUSTUP_HOME: $(RUST_DIR)\rustup

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ git:
55
depth: 1
66
env:
77
global:
8-
- RUST_VERSION=1.35.0
8+
- RUST_VERSION=1.36.0
99
- CARGO_HOME=$TRAVIS_BUILD_DIR/third_party/rust_crates/
1010
- RUSTUP_HOME=$HOME/.rustup/
1111
- RUST_BACKTRACE=full

website/manual.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ cd deno
174174
To ensure reproducible builds, deno has most of its dependencies in a git
175175
submodule. However, you need to install separately:
176176

177-
1. [Rust](https://www.rust-lang.org/en-US/install.html) >= 1.34.1
177+
1. [Rust](https://www.rust-lang.org/en-US/install.html) >= 1.36.0
178178
2. [Node](https://nodejs.org/)
179179
3. Python 2.
180180
[Not 3](https://github.com/denoland/deno/issues/464#issuecomment-411795578).
@@ -961,7 +961,7 @@ $ rust-lldb -- ./target/debug/deno run --allow-net tests/http_bench.ts
961961
# `ImportError: cannot import name _remove_dead_weakref`
962962
# In that case, use system python by setting PATH, e.g.
963963
# PATH=/System/Library/Frameworks/Python.framework/Versions/2.7/bin:$PATH
964-
(lldb) command script import "/Users/kevinqian/.rustup/toolchains/1.34.1-x86_64-apple-darwin/lib/rustlib/etc/lldb_rust_formatters.py"
964+
(lldb) command script import "/Users/kevinqian/.rustup/toolchains/1.36.0-x86_64-apple-darwin/lib/rustlib/etc/lldb_rust_formatters.py"
965965
(lldb) type summary add --no-value --python-function lldb_rust_formatters.print_val -x ".*" --category Rust
966966
(lldb) type category enable Rust
967967
(lldb) target create "../deno/target/debug/deno"

0 commit comments

Comments
 (0)