Skip to content

Commit

Permalink
Update to rust 1.52
Browse files Browse the repository at this point in the history
Signed-off-by: Heinz N. Gies <heinz@licenser.net>
  • Loading branch information
Licenser committed May 11, 2021
1 parent 816dd5a commit 2c935f2
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
PROPTEST_CASES: 2500
RUSTFLAGS: -D warnings -C target-feature=+avx,+avx2,+sse4.2
with:
version: "0.16.0"
args: " --exclude-files target* tremor-cli tremor-api deprecated **/errors.rs --out Lcov --all"
version: "0.18.0-alpha3"
args: " --avoid-cfg-tarpaulin --exclude-files target* tremor-cli tremor-api **/errors.rs --out Lcov --all"
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.50.0 as builder
FROM rust:1.52.1 as builder

# Avoid warnings by switching to noninteractive
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.learn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.50.0 as builder
FROM rust:1.52.1 as builder

RUN cargo install --features=ssl websocat

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.51.0
1.52.1
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
clippy::unnecessary_unwrap,
clippy::pedantic
)]
// TODOthis is needed due to a false positive in clippy
// TODO this is needed due to a false positive in clippy
// https://github.com/rust-lang/rust/issues/83125
// we will need this in 1.52.0
// #![allow(proc_macro_back_compat)]
#![allow(proc_macro_back_compat)]

#[macro_use]
extern crate serde_derive;
Expand Down
4 changes: 2 additions & 2 deletions tremor-pipeline/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
clippy::unnecessary_unwrap,
clippy::pedantic
)]
// TODOthis is needed due to a false positive in clippy
// TODO this is needed due to a false positive in clippy
// https://github.com/rust-lang/rust/issues/83125
// we will need this in 1.52.0
// #![allow(proc_macro_back_compat)]
#![allow(proc_macro_back_compat)]

#[macro_use]
extern crate serde_derive;
Expand Down
2 changes: 1 addition & 1 deletion tremor-script/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// TODO this is needed due to a false positive in clippy
// https://github.com/rust-lang/rust/issues/83125
// we will need this in 1.52.0
// #![allow(proc_macro_back_compat)]
#![allow(proc_macro_back_compat)]

/// The Tremor Script AST
pub mod ast;
Expand Down

0 comments on commit 2c935f2

Please sign in to comment.