Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Oct 17, 2023
1 parent b0f20a0 commit c5417c3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ arrow-schema = { workspace = true }
async-trait = "0.1"
auto_enums = "0.8"
auto_impl = "1"
bincode = { version = "=2.0.0-rc.3", features = ["serde"] }
bitflags = "2"
byteorder = "1"
bytes = "1"
Expand Down
3 changes: 1 addition & 2 deletions src/common/src/util/epoch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ use std::cmp::Ordering;
use std::sync::LazyLock;
use std::time::{Duration, SystemTime};

use bincode::{Decode, Encode};
use parse_display::Display;

use crate::types::{ScalarImpl, Timestamptz};
Expand Down Expand Up @@ -119,7 +118,7 @@ impl From<u64> for Epoch {
}
}

#[derive(Debug, Encode, Decode, Clone, Copy, PartialEq)]
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct EpochPair {
pub curr: u64,
pub prev: u64,
Expand Down

0 comments on commit c5417c3

Please sign in to comment.