Skip to content

Commit

Permalink
Fix clippy warning, remove .gitignore from crate
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Aug 16, 2022
1 parent 575f9b7 commit d29d6e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Cargo.toml
Expand Up @@ -12,7 +12,12 @@ categories = ["asynchronous"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

exclude = ["/.github/", "/TODO.txt", "/UPCOMING_VERSION_CHANGES.txt"]
exclude = [
"/.gitignore",
"/.github/",
"/TODO.txt",
"/UPCOMING_VERSION_CHANGES.txt",
]

[dependencies]
# Error definitions
Expand Down
2 changes: 1 addition & 1 deletion src/subsystem/identifier.rs
@@ -1,6 +1,6 @@
use std::sync::atomic::{AtomicUsize, Ordering};

#[derive(PartialEq, Debug, Clone)]
#[derive(PartialEq, Eq, Debug, Clone)]
pub struct SubsystemIdentifier {
id: usize,
}
Expand Down

0 comments on commit d29d6e2

Please sign in to comment.