Skip to content

Commit f3a936a

Browse files
David Tolnayfacebook-github-bot
authored andcommitted
Update to Rust 1.63.0
Summary: Release announcement: https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html Release notes: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1630-2022-08-11 Reviewed By: zertosh Differential Revision: D38604755 fbshipit-source-id: c52bcbe85302cdd6d13d561f6620b7a1ac72920e
1 parent d006ecb commit f3a936a

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

starlark/src/tests/interop.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
//! Test starlark-rust embedding.
1919
20+
#![allow(clippy::significant_drop_in_scrutinee)] // FIXME?
21+
2022
use std::cell::RefCell;
2123
use std::sync::Arc;
2224
use std::sync::Mutex;

starlark/src/values/docs/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717

1818
//! Types supporting documentation for code written in or for Starlark.
1919
20+
#![allow(clippy::derive_partial_eq_without_eq)] // FIXME?
21+
#![allow(clippy::format_push_string)] // FIXME?
22+
2023
// TODO(nga): document it
2124
#![allow(missing_docs)]
2225

starlark/src/values/types/tuple.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
//! The list type, an immutable sequence of values.
1919
20+
#![allow(clippy::extra_unused_lifetimes)] // FIXME?
21+
2022
use std::cmp::Ordering;
2123
use std::fmt;
2224
use std::fmt::Debug;

0 commit comments

Comments
 (0)