Skip to content

Commit

Permalink
Bump rust toolchain to 1.79.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed Jun 13, 2024
1 parent 23b79fc commit ca3690c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crates/msvg/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ struct FileNameOverlay {
impl FileNameOverlay {
pub fn show(&mut self, file_name: &str) {
self.should_show = true;
self.file_name = file_name.to_owned();
file_name.clone_into(&mut self.file_name);
}

pub fn ui(&mut self, ui: &mut egui::Ui, rect: &egui::Rect) {
Expand Down
6 changes: 0 additions & 6 deletions crates/vsvg-cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ impl Display for CliError {

impl Error for CliError {}

trait ArgCreator {
type T: CommandArg;

fn create_arg(&self, arg: &mut Arg);
}

#[derive(Debug)]
pub(crate) struct State {
pub document: Document,
Expand Down
1 change: 0 additions & 1 deletion crates/whiskers/src/sketch.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//!
use kurbo::Affine;
use vsvg::{
Document, DocumentTrait, IntoBezPathTolerance, LayerID, PageSize, Path, PathMetadata,
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.77.1"
channel = "1.79.0"

0 comments on commit ca3690c

Please sign in to comment.