Skip to content

Commit

Permalink
updated dependencies, solved clippy and rust fmt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vsbuffalo committed Jan 24, 2024
1 parent 14d6690 commit 5917a0a
Show file tree
Hide file tree
Showing 16 changed files with 2,011 additions and 1,329 deletions.
945 changes: 549 additions & 396 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ pub mod lib {
pub mod figshare;
pub mod zenodo;
}
pub mod project;
pub mod assets;
pub mod download;
pub mod progress;
pub mod macros;
pub mod progress;
pub mod project;
pub mod remote;
pub mod utils;
pub mod assets;
pub mod test_utilities;
pub mod utils;
}

pub mod logging_setup;
6 changes: 2 additions & 4 deletions src/lib/api/dryad.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
use serde_derive::{Serialize,Deserialize};
use serde_derive::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, PartialEq, Clone)]
pub struct DataDryadAPI {
base_url: String,

#[serde(skip_serializing)]
token: String
token: String,
}


Loading

0 comments on commit 5917a0a

Please sign in to comment.