Skip to content

Commit

Permalink
Merge pull request #97 from nickbabcock/deps
Browse files Browse the repository at this point in the history
Update dependencies to latest
  • Loading branch information
nickbabcock authored Oct 5, 2023
2 parents ddcd6ca + 25d7a77 commit 8d5112b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ bindgen = { version = "0.68.1", optional = true }

[dependencies]
chrono = "0.4.0"
bitflags = "1.0"
bitflags = "2.4"
memchr = "2"
log = "0.4"
env_logger = { version = "0.8", default-features = false }
env_logger = { version = "0.10", default-features = false }
serde = { version = "1", features = ["derive"], optional = true }
libc = { version = "0.2" }

[dev-dependencies]
serde = { version = "1", features = ["derive"] }
serde_test = "1.0"
criterion = "0.3"
criterion = "0.5"
log = { version = "0.4", features = ["serde"] }
itertools = "0.10"
itertools = "0.11"
num_cpus = "1.0"
failure = "0.1.3"
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::panic::{RefUnwindSafe, UnwindSafe};

bitflags! {
/// Bitflags of capabilities that a plugin advertises to collectd.
#[derive(Default)]
#[derive(Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct PluginCapabilities: u32 {
const READ = 0b0000_0001;
const LOG = 0b0000_0010;
Expand Down

0 comments on commit 8d5112b

Please sign in to comment.