repline: Remove default-features from crossterm, since we don't use the event API

This commit is contained in:
John 2024-04-22 02:18:57 -05:00
parent 9b11543396
commit ed9b73a1a3
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
//! Handles argument parsing (currently using the [argh] crate) //! Handles argument parsing (currently using the [argwerk] crate)
use std::{io::IsTerminal, path::PathBuf, str::FromStr}; use std::{io::IsTerminal, path::PathBuf, str::FromStr};

View File

@ -1,6 +1,6 @@
//! The Conlang REPL, based on [repline] //! The Conlang REPL, based on [repline]
//! //!
//! Uses [argh] for argument parsing. //! Uses [argwerk] for argument parsing.
#![warn(clippy::all)] #![warn(clippy::all)]
pub mod ansi; pub mod ansi;

View File

@ -8,4 +8,4 @@ license.workspace = true
publish.workspace = true publish.workspace = true
[dependencies] [dependencies]
crossterm = "0.27.0" crossterm = { version = "0.27.0", default-features = false }