Skip to content

Commit 852a47d

Browse files
authored
Merge branch 'main' into jgrund/gradient
2 parents e1d93ac + 0bf645d commit 852a47d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "console"
33
description = "A terminal and console abstraction for Rust"
4-
version = "0.16.1"
4+
version = "0.16.2"
55
keywords = ["cli", "terminal", "colors", "console", "ansi"]
66
license = "MIT"
77
edition = "2021"
@@ -10,6 +10,7 @@ repository = "https://github.com/console-rs/console"
1010
documentation = "https://docs.rs/console"
1111
readme = "README.md"
1212
rust-version = "1.71"
13+
include = ["CHANGELOG.md", "Cargo.toml", "LICENSE", "README.md", "src/**/*.rs"]
1314

1415
[features]
1516
default = ["unicode-width", "ansi-parsing", "std"]

src/ansi.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ use core::{
66
str::CharIndices,
77
};
88

9-
#[derive(Debug, Default, Clone, Copy)]
9+
10+
#[derive(Debug, Clone, Copy, Default)]
1011
enum State {
1112
#[default]
1213
Start,

0 commit comments

Comments
 (0)