Skip to content

Commit

Permalink
Merge pull request #973 from hannobraun/rust
Browse files Browse the repository at this point in the history
Upgrade to Rust 1.63.0
  • Loading branch information
hannobraun authored Aug 22, 2022
2 parents 45ef8a1 + 06d6b0b commit cec809d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/fj-host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ impl Watcher {
}

/// Parameters that are passed to a model.
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Parameters(pub HashMap<String, String>);

impl Parameters {
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/algorithms/approx/faces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::objects::Face;
use super::{CycleApprox, Local, Tolerance};

/// An approximation of a [`Face`]
#[derive(Debug, PartialEq)]
#[derive(Debug, Eq, PartialEq)]
pub struct FaceApprox {
/// All points that make up the approximation
///
Expand Down
4 changes: 2 additions & 2 deletions crates/fj/src/models/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl Metadata {
}

/// Metadata about a [`crate::models::Model`].
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct ModelMetadata {
/// A short, human-friendly name used to identify this model.
pub name: String,
Expand Down Expand Up @@ -167,7 +167,7 @@ impl ModelMetadata {
}

/// Metadata describing a model's argument.
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct ArgumentMetadata {
/// The name used to refer to this argument.
pub name: String,
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.62.1"
channel = "1.63.0"
components = ["rustfmt", "clippy"]

0 comments on commit cec809d

Please sign in to comment.