This repository was archived by the owner on Nov 30, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ impl crate::HashEngine for HashEngine {
79
79
#[ cfg_attr( feature = "schemars" , derive( schemars:: JsonSchema ) ) ]
80
80
#[ repr( transparent) ]
81
81
pub struct Hash (
82
- #[ cfg_attr( feature = "schemars" , schemars( schema_with = "util::json_hex_string::len_20" ) ) ]
82
+ #[ cfg_attr( feature = "schemars" , schemars( schema_with = "crate:: util::json_hex_string::len_20" ) ) ]
83
83
[ u8 ; 20 ]
84
84
) ;
85
85
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl crate::HashEngine for HashEngine {
74
74
#[ cfg_attr( feature = "schemars" , derive( schemars:: JsonSchema ) ) ]
75
75
#[ repr( transparent) ]
76
76
pub struct Hash (
77
- #[ cfg_attr( feature = "schemars" , schemars( schema_with = "util::json_hex_string::len_20" ) ) ]
77
+ #[ cfg_attr( feature = "schemars" , schemars( schema_with = "crate:: util::json_hex_string::len_20" ) ) ]
78
78
[ u8 ; 20 ]
79
79
) ;
80
80
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl crate::HashEngine for HashEngine {
74
74
#[ cfg_attr( feature = "schemars" , derive( schemars:: JsonSchema ) ) ]
75
75
#[ repr( transparent) ]
76
76
pub struct Hash (
77
- #[ cfg_attr( feature = "schemars" , schemars( schema_with = "util::json_hex_string::len_32" ) ) ]
77
+ #[ cfg_attr( feature = "schemars" , schemars( schema_with = "crate:: util::json_hex_string::len_32" ) ) ]
78
78
[ u8 ; 32 ]
79
79
) ;
80
80
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ impl crate::HashEngine for HashEngine {
81
81
#[ cfg_attr( feature = "schemars" , derive( schemars:: JsonSchema ) ) ]
82
82
#[ repr( transparent) ]
83
83
pub struct Hash (
84
- #[ cfg_attr( feature = "schemars" , schemars( schema_with = "util::json_hex_string::len_64" ) ) ]
84
+ #[ cfg_attr( feature = "schemars" , schemars( schema_with = "crate:: util::json_hex_string::len_64" ) ) ]
85
85
[ u8 ; 64 ]
86
86
) ;
87
87
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ impl crate::HashEngine for HashEngine {
199
199
#[ cfg_attr( feature = "schemars" , derive( schemars:: JsonSchema ) ) ]
200
200
#[ repr( transparent) ]
201
201
pub struct Hash (
202
- #[ cfg_attr( feature = "schemars" , schemars( schema_with = "util::json_hex_string::len_8" ) ) ]
202
+ #[ cfg_attr( feature = "schemars" , schemars( schema_with = "crate:: util::json_hex_string::len_8" ) ) ]
203
203
[ u8 ; 8 ]
204
204
) ;
205
205
You can’t perform that action at this time.
0 commit comments