Skip to content

Commit 94f3e0e

Browse files
committed
Do not enable json by default
1 parent 574769f commit 94f3e0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude = ["/cargo_deny.sh", "/deny.toml", "/test.sh"]
1515
rust-version = "1.71.1"
1616

1717
[features]
18-
default = ["rustls", "gzip", "json"]
18+
default = ["rustls", "gzip"]
1919

2020
######## SUPPORTED FEATURES
2121

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ You can control them when including ureq as a dependency.
132132

133133
`ureq = { version = "3", features = ["socks-proxy", "charset"] }`
134134

135-
The default enabled features are: **rustls**, **gzip** and **json**.
135+
The default enabled features are: **rustls** and **gzip**.
136136

137137
* **rustls** enables the rustls TLS implementation. This is the default for the the crate level
138138
convenience calls (`ureq::get` etc). It currently uses `ring` as the TLS provider.

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
//!
137137
//! `ureq = { version = "3", features = ["socks-proxy", "charset"] }`
138138
//!
139-
//! The default enabled features are: **rustls**, **gzip** and **json**.
139+
//! The default enabled features are: **rustls** and **gzip**.
140140
//!
141141
//! * **rustls** enables the rustls TLS implementation. This is the default for the the crate level
142142
//! convenience calls (`ureq::get` etc). It currently uses `ring` as the TLS provider.

0 commit comments

Comments
 (0)