diff --git a/compiler/cl-repl/src/args.rs b/compiler/cl-repl/src/args.rs index 1ef4921..cae9f0f 100644 --- a/compiler/cl-repl/src/args.rs +++ b/compiler/cl-repl/src/args.rs @@ -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}; diff --git a/compiler/cl-repl/src/lib.rs b/compiler/cl-repl/src/lib.rs index 84d9e0c..c35852a 100644 --- a/compiler/cl-repl/src/lib.rs +++ b/compiler/cl-repl/src/lib.rs @@ -1,6 +1,6 @@ //! The Conlang REPL, based on [repline] //! -//! Uses [argh] for argument parsing. +//! Uses [argwerk] for argument parsing. #![warn(clippy::all)] pub mod ansi; diff --git a/repline/Cargo.toml b/repline/Cargo.toml index 0437167..eff96ef 100644 --- a/repline/Cargo.toml +++ b/repline/Cargo.toml @@ -8,4 +8,4 @@ license.workspace = true publish.workspace = true [dependencies] -crossterm = "0.27.0" +crossterm = { version = "0.27.0", default-features = false }