Commit f507dd6
committed
fix: url needs std specified to compile idna
idna dep of url is failing to compile on stable because default_features is false.
std is a default feature that disables the unstable use of error_in_core.
error[E0658]: use of unstable library feature 'error_in_core'
error: could not compile `idna` (lib) due to previous error
rust-lang/rust#103765
https://github.com/servo/rust-url/blob/main/url/Cargo.toml#L351 parent 3ac2d9f commit f507dd6
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
0 commit comments