Skip to content

Commit

Permalink
feat: update worktable
Browse files Browse the repository at this point in the history
  • Loading branch information
JakkuSakura committed May 6, 2024
1 parent 4c4caf2 commit c76313e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ authors = ["PathScale"]

[dependencies]
# error
eyre = "=0.6.8"
eyre = "0.6.8"
# tokio
tokio = { version = "1.35.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
# tracing
tracing = "0.1.40"
tracing = "0.1"
# serialize
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
csv = "1.2.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
csv = "1.3"
3 changes: 0 additions & 3 deletions src/bin/query.rs

This file was deleted.

2 changes: 1 addition & 1 deletion src/worktable.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use eyre::*;
use eyre::{Context, eyre, Result};
use serde::*;
use std::cmp::Ordering;
use std::collections::HashMap;
Expand Down

0 comments on commit c76313e

Please sign in to comment.