We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a544730 commit 619de8eCopy full SHA for 619de8e
url/src/lib.rs
@@ -73,6 +73,14 @@ assert!(data_url.fragment() == Some(""));
73
# run().unwrap();
74
```
75
76
+## Default Features
77
+
78
+Versions `< 3` of the crate have no default features. Versions `>= 3` have the default feature 'std'.
79
+If you are upgrading across this boundary and you have specified `default-features = false`, then
80
+you will need to add the 'std' feature or the 'alloc' feature to your dependency.
81
+The 'std' feature has the same behavior as the previous versions. The 'alloc' feature
82
+provides no_std support.
83
84
## Serde
85
86
Enable the `serde` feature to include `Deserialize` and `Serialize` implementations for `url::Url`.
0 commit comments