Skip to content

Commit

Permalink
Remove duplicate import in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mqudsi committed Feb 27, 2024
1 parent 03b8cf2 commit bfc2044
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions securestore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ repository = "https://github.com/neosmart/securestore-rs/tree/master/securestore

[dependencies]
radix64 = "0.6.2"
serde = { version = "1.0.140", features = [ "derive" ] }
serde_json = "1.0.82"
serde = { version = "1.0.197", features = [ "derive" ] }
serde_json = "1.0.114"

[target.'cfg(not(windows))'.dependencies.openssl]
version = "0.10.41"
version = "0.10.64"
features = [ ]

[target.'cfg(windows)'.dependencies.openssl]
version = "0.10.41"
version = "0.10.64"
# Building OpenSSL (via openssl/vendored) requires perl.exe on Windows, which
# is less likely to be installed than OpenSSL itself.
# features = [ "vendored" ]
Expand All @@ -31,4 +31,4 @@ openssl-vendored = [ "openssl/vendored" ]

[dev-dependencies]
# `tempfile` is used in the tests to simplify cleanup
tempfile = "3.3.0"
tempfile = "3.10.1"
1 change: 0 additions & 1 deletion securestore/src/tests/key_management.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use crate::shared::*;
use crate::*;
use openssl::rand;
use std::io::Read;
use tempfile::NamedTempFile;

Expand Down
4 changes: 2 additions & 2 deletions ssclient/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ repository = "https://github.com/neosmart/securestore-rs/tree/master/securestore
[dependencies]
atty = "0.2.14"
radix64 = "0.6.2"
clap = { version = "3.2.16", default-features = false, features = [ "std" ] }
clap = { version = "3.2.25", default-features = false, features = [ "std" ] }
getch = "0.3.1"
securestore = { path = "../securestore", version = "0.100.0", default-features = false }
serde_json = "1.0.82"
serde_json = "1.0.114"

[features]
# default = [ "openssl-vendored" ]
Expand Down

0 comments on commit bfc2044

Please sign in to comment.