Skip to content

Commit

Permalink
fix: deps and diff
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin-Ray committed Jun 21, 2024
1 parent fe56393 commit 0dc7578
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ rayon = { version = "1.5" }
serde = { version = "1" }
serde_json = { version = "1" }
thiserror = { version = "1" }
time = {version = "0.3.36", features = ["serde"]}
tracing = { version = "0.1.36" }
tracing-opentelemetry = { version = "0.22.0" }
tracing-subscriber = { version = "0.3.0" }
Expand Down
1 change: 0 additions & 1 deletion crates/proof-of-sql-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ test = true
arrayvec = { workspace = true, features = ["serde"] }
bigdecimal = { workspace = true }
chrono = { workspace = true }
time = { workspace = true }
lalrpop-util = { workspace = true, features = ["lexer", "unicode"] }
serde = { workspace = true, features = ["serde_derive"] }
thiserror = { workspace = true }
Expand Down
3 changes: 2 additions & 1 deletion crates/proof-of-sql-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

/// Module for handling an intermediate decimal type received from the lexer.
pub mod intermediate_decimal;
mod intermediate_time;
/// Module for handling an intermediate timestamp type received from the lexer.
pub mod intermediate_time;
#[macro_use]
extern crate lalrpop_util;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ mod tests {
PoSQLTimeZone::UTC,
&[12, 34, 56],
);

assert_eq!(committable_column.len(), 3);
assert!(!committable_column.is_empty());
assert_eq!(
Expand Down

0 comments on commit 0dc7578

Please sign in to comment.