Skip to content

Commit 3c0fd38

Browse files
committed
chore: fix unusued deps.
1 parent 1b0b4bb commit 3c0fd38

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

Cargo.lock

Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

migration/core/migrator/mtma-null/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ anyhow = { workspace = true }
1515
thiserror = { workspace = true }
1616
mtma-node-types = { workspace = true }
1717
chrono = { workspace = true }
18-
walkdir = { workspace = true }
1918
uuid = { workspace = true }
2019
tracing = { workspace = true }
2120
mtma-types = { workspace = true }

migration/core/node/mtma-null/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ anyhow = { workspace = true }
1515
thiserror = { workspace = true }
1616
mtma-node-types = { workspace = true }
1717
chrono = { workspace = true }
18-
walkdir = { workspace = true }
1918
uuid = { workspace = true }
2019
tracing = { workspace = true }
2120
mtma-types = { workspace = true }

util/util/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ publish = { workspace = true }
99
rust-version = { workspace = true }
1010

1111
[dependencies]
12-
serde = { workspace = true }
13-
bcs = { workspace = true }
14-
thiserror = { workspace = true }
15-
tokio = { workspace = true }
1612
walkdir = { workspace = true }
1713
anyhow = { workspace = true }
1814
tracing = { workspace = true }
1915

16+
[dev-dependencies]
17+
tracing-test = { workspace = true }
18+
tempfile = { workspace = true }
19+
2020
[lints]
2121
workspace = true

util/util/src/file.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ pub fn copy_dir_recursive_with_ignore(
102102
#[cfg(test)]
103103
mod test {
104104
use super::*;
105+
use std::fs::Permissions;
106+
use std::os::unix::fs::PermissionsExt;
107+
use std::path::PathBuf;
105108
use tempfile::TempDir;
106109

107110
#[test]

0 commit comments

Comments
 (0)