Skip to content

Commit 961ea58

Browse files
authored
Merge pull request #85 from palantir/async
Support asynchronous clients and servers
2 parents 42a06c5 + d3a7b6b commit 961ea58

File tree

29 files changed

+7947
-2315
lines changed

29 files changed

+7947
-2315
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ orbs:
55

66
executors:
77
rust:
8-
docker: [{ image: rust:1.34.0 }]
8+
docker: [{ image: rust:1.39.0 }]
99

1010
commands:
1111
restore_target:
@@ -90,7 +90,7 @@ jobs:
9090
working_directory: /Users/distiller/root/project
9191
steps:
9292
- attach_workspace: { at: /Users/distiller }
93-
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain 1.34.0
93+
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain 1.39.0
9494
- run: sudo ln -s $CARGO_HOME/bin/* /usr/local/bin
9595
- restore_target: { job: dist-macos }
9696
- run: cargo build --release --target x86_64-apple-darwin -p conjure-rust
@@ -109,7 +109,7 @@ jobs:
109109
- attach_workspace: { at: C:\Users\circleci }
110110
- run: |
111111
$progressPreference = "silentlyContinue"
112-
Invoke-WebRequest "https://static.rust-lang.org/dist/rust-1.34.0-x86_64-pc-windows-msvc.exe" -outfile rust.exe
112+
Invoke-WebRequest "https://static.rust-lang.org/dist/rust-1.39.0-x86_64-pc-windows-msvc.exe" -outfile rust.exe
113113
- run: .\rust.exe /VERYSILENT /NORESTART /DIR="C:\Program Files\Rust"
114114
- run: |
115115
$env:Path += ";C:\Program Files\Rust\bin"

0 commit comments

Comments
 (0)