Remove derive-more from default features

This commit is contained in:
Michael Davis
2025-03-28 09:57:54 -04:00
parent 98c3336fca
commit cc99f02635
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ path = "src/lib.rs"
all-features = true
[features]
default = ["bracketed-paste", "events", "windows", "derive-more"]
default = ["bracketed-paste", "events", "windows"]
#! ### Default features
## Enables triggering [`Event::Paste`](event::Event::Paste) when pasting text into the terminal.

View File

@@ -171,7 +171,7 @@ This can disable `mio` / `signal-hook` / `signal-hook-mio` dependencies.
| `winapi` | Used for low-level windows system calls which ANSI codes can't replace | windows only |
| `futures-core` | For async stream of events | only with `event-stream` feature flag |
| `serde` | ***ser***ializing and ***de***serializing of events | only with `serde` feature flag |
| `derive_more` | Adds `is_*` helper functions for event types | optional (`derive-more` feature), included by default |
| `derive_more` | Adds `is_*` helper functions for event types | optional (`derive-more` feature) |
### Other Resources