Skip to content

Commit f48df11

Browse files
committed
chore!: remove anyhow from default features
[#131][131] introduced a new anyhow default feature flag to allow users to hide aliased exports such as `eyre::Error` and `eyre::Context`. This changeset removes `anyhow` from the list of default features, making the compatibility layer with the anyhow crate opt-in. Implements [#136][136] [131]: #131 [136]: #136 BREAKING CHANGE: Removing a default feature is a breaking change.
1 parent 9498677 commit f48df11

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,12 @@ vice-versa by `re-exporting` all of the renamed APIs with the names used in
205205

206206
### Disabling the compatibility layer
207207

208-
The `anyhow` compatibility layer is enabled by default.
209-
If you do not need anyhow compatibility, it is advisable
210-
to disable the `"anyhow"` feature:
208+
The `anyhow` compatibility layer is disabled by default.
209+
If you need anyhow compatibility, it is advisable
210+
to enable the `"anyhow"` feature:
211211

212212
```toml
213-
eyre = { version = "0.6", default-features = false, features = ["auto-install", "track-caller"] }
213+
eyre = { version = "0.6", features = ["anyhow"] }
214214
```
215215

216216
### `Context` and `Option`

eyre/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = { workspace = true }
1313
rust-version = { workspace = true }
1414

1515
[features]
16-
default = ["anyhow", "auto-install", "track-caller"]
16+
default = ["auto-install", "track-caller"]
1717
anyhow = []
1818
auto-install = []
1919
track-caller = []

eyre/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,12 @@
267267
//!
268268
//! ### Disabling the compatibility layer
269269
//!
270-
//! The `anyhow` compatibility layer is enabled by default.
271-
//! If you do not need anyhow compatibility, it is advisable
272-
//! to disable the `"anyhow"` feature:
270+
//! The `anyhow` compatibility layer is disabled by default.
271+
//! If you need anyhow compatibility, it is advisable
272+
//! to enable the `"anyhow"` feature:
273273
//!
274274
//! ```toml
275-
//! eyre = { version = "0.6", default-features = false, features = ["auto-install", "track-caller"] }
275+
//! eyre = { version = "0.6", features = ["anyhow"] }
276276
//! ```
277277
//!
278278
//! ### `Context` and `Option`

0 commit comments

Comments
 (0)