Skip to content

Commit 371eaa6

Browse files
committed
update colored to v3 to get rid of lazy_static
1 parent fed7492 commit 371eaa6

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/steel-repl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "REPL library for steel"
1111

1212
[dependencies]
1313
rustyline = { version = "14.0.0", default-features = false, features = ["with-dirs", "with-file-history", "derive"] }
14-
colored = "2.0.0"
14+
colored = "3.0.0"
1515
steel-core = { workspace = true }
1616
steel-parser = { path = "../steel-parser", version = "0.6.0"}
1717
env_home = "0.1.0"

crates/steel-repl/src/highlight.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
extern crate rustyline;
2-
use colored::*;
2+
use colored::Colorize;
33
use steel_parser::interner::InternedString;
44
use steel_parser::parser::SourceId;
55
use steel_parser::tokens::TokenType;

crates/steel-repl/src/repl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
extern crate rustyline;
2-
use colored::*;
2+
use colored::Colorize;
33
use rustyline::history::FileHistory;
44
use steel::compiler::modules::steel_home;
55
use steel::rvals::{Custom, SteelString};

0 commit comments

Comments
 (0)