File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,6 @@ openssl = { version = "0.10.71", features = ["vendored"] }
2121
2222[features ]
2323default = [" workspace-hack" ]
24+
25+ [package .metadata .cargo-udeps .ignore ]
26+ normal = [" workspace-hack" ]
Original file line number Diff line number Diff line change @@ -214,6 +214,7 @@ mod tests {
214214 use super :: * ;
215215
216216 #[ mz_ore:: test]
217+ #[ cfg_attr( miri, ignore) ] // unsupported operation: can't call foreign function `OPENSSL_init_ssl` on OS `linux`
217218 fn test_hash_password ( ) {
218219 let password = "password" . to_string ( ) ;
219220 let hashed_password = hash_password ( & password. into ( ) ) . expect ( "Failed to hash password" ) ;
@@ -223,6 +224,7 @@ mod tests {
223224 }
224225
225226 #[ mz_ore:: test]
227+ #[ cfg_attr( miri, ignore) ] // unsupported operation: can't call foreign function `OPENSSL_init_ssl` on OS `linux`
226228 fn test_scram256_hash ( ) {
227229 let password = "password" . into ( ) ;
228230 let scram_hash = scram256_hash ( & password) . expect ( "Failed to hash password" ) ;
You can’t perform that action at this time.
0 commit comments