Skip to content

Commit 4fc10d0

Browse files
committed
Move tempfile dep to workspace
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent e4a3626 commit 4fc10d0

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ nostr-sdk = { version = "0.41", path = "./crates/nostr-sdk", default-features =
3636
reqwest = { version = "0.12", default-features = false }
3737
serde = { version = "1.0", default-features = false }
3838
serde_json = { version = "1.0", default-features = false }
39+
tempfile = "3.19"
3940
tokio = { version = ">=1.37", default-features = false }
4041
tracing = { version = "0.1", default-features = false }
4142
tracing-subscriber = "0.3"

crates/nostr-lmdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ heed = { version = "0.20", default-features = false, features = ["read-txn-no-tl
2626
heed = { version = "0.20", default-features = false, features = ["read-txn-no-tls", "posix-sem"] }
2727

2828
[dev-dependencies]
29-
tempfile = "3"
29+
tempfile.workspace = true
3030
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }

crates/nostr-mls-sqlite-storage/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ serde_json.workspace = true
2222
tracing = { workspace = true, features = ["std"] }
2323

2424
[dev-dependencies]
25-
tempfile = "3.19.1"
25+
tempfile.workspace = true

crates/nostr-mls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tracing = { workspace = true, features = ["std"] }
2424
[dev-dependencies]
2525
nostr-mls-memory-storage.workspace = true
2626
nostr-mls-sqlite-storage.workspace = true
27-
tempfile = "3.8"
27+
tempfile.workspace = true
2828
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }
2929
tracing-subscriber = { workspace = true, features = ["env-filter"] }
3030

0 commit comments

Comments
 (0)