File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ nom = "5.0.0"
28
28
toml = { version = " 0.5" , optional = true }
29
29
serde_json = { version = " 1.0.2" , optional = true }
30
30
yaml-rust = { version = " 0.4" , optional = true }
31
- serde-hjson = { version = " 0.9" , optional = true }
31
+ serde-hjson = { version = " 0.9" , default-features = false , optional = true }
32
32
rust-ini = { version = " 0.13" , optional = true }
33
33
34
34
[dev-dependencies ]
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ fn test_error_parse() {
27
27
assert_eq ! (
28
28
res. unwrap_err( ) . to_string( ) ,
29
29
format!(
30
- "failed to parse datetime for key `error` at line 2 column 9 in {}" ,
30
+ "invalid TOML value, did you mean to use a quoted string? at line 2 column 9 in {}" ,
31
31
path. display( )
32
32
)
33
33
) ;
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ fn test_error_parse() {
86
86
assert_eq ! (
87
87
res. unwrap_err( ) . to_string( ) ,
88
88
format!(
89
- "failed to parse datetime for key `error` at line 2 column 9 in {}" ,
89
+ "invalid TOML value, did you mean to use a quoted string? at line 2 column 9 in {}" ,
90
90
path_with_extension. display( )
91
91
)
92
92
) ;
You can’t perform that action at this time.
0 commit comments