Cargo Features

[dependencies]
helix-crossterm = { version = "0.1.0-beta.1", default-features = false, features = ["bracketed-paste", "events", "windows", "event-stream", "serde", "use-dev-tty", "derive-more", "libc"] }
default = bracketed-paste, events, windows

These default features are set whenever helix-crossterm is added without default-features = false somewhere in the dependency tree.

bracketed-paste default

Default features

Enables triggering Event::Paste when pasting text into the terminal.

Affects event::EnableBracketedPaste, event::DisableBracketedPaste

events default event-stream?

Enables reading input/events from the system using the event module.

Enables mio, signal-hook, and signal-hook-mio

Affects event::EnableMouseCapture, helix-crossterm::event, unix::query_terminal_theme_mode, unix::supports_synchronized_output, unix::supports_keyboard_enhancement, unix::query_keyboard_enhancement_flags, unix::terminal_features, windows::supports_synchronized_output, windows::supports_keyboard_enhancement, windows::query_keyboard_enhancement_flags, windows::query_terminal_theme_mode, windows::terminal_features

windows default

Enables windows specific crates.

Enables crossterm_winapi and winapi

event-stream = events

Optional Features

Enables the EventStream struct for async event reading.

Enables futures-core

serde

Enables serde for various types.

Enables serde, serde of bitflags

use-dev-tty = filedescriptor

Enables raw file descriptor polling / selecting instead of mio.

Enables process of rustix ^0.38.36

derive-more

Enables is_* helper functions for event enums.

Enables derive_more ^1.0.0

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

libc unix implicit feature

Enables libc

libc:

Raw FFI bindings to platform libraries like libc

Affects file_descriptor::FileDesc, file_descriptor::tty_fd

filedescriptor unix use-dev-tty?