Skip to content

Commit ba8e8ab

Browse files
committed
avoid importing minimad directly as it's exported by termimad
Fix #55
1 parent 6d5c7bc commit ba8e8ab

File tree

3 files changed

+36
-36
lines changed

3 files changed

+36
-36
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bacon"
3-
version = "1.2.1"
3+
version = "1.2.2-dev"
44
authors = ["dystroy <[email protected]>"]
55
repository = "https://github.com/Canop/bacon"
66
description = "background rust compiler"
@@ -11,21 +11,20 @@ categories = ["command-line-utilities", "development-tools"]
1111
readme = "README.md"
1212

1313
[dependencies]
14-
argh = "0.1.5"
15-
anyhow = "1.0"
16-
cargo_metadata = "0.14"
17-
cli-log = "2.0"
18-
crossbeam = "0.8"
19-
crossterm = "0.21"
20-
directories-next = "2.0"
21-
minimad = "0.8"
14+
argh = "0.1.6"
15+
anyhow = "1.0.44"
16+
cargo_metadata = "0.14.0"
17+
cli-log = "2.0.0"
18+
crossbeam = "0.8.1"
19+
crossterm = "0.21.0"
20+
directories-next = "2.0.0"
2221
notify = "5.0.0-pre.11"
2322
lazy-regex = "2.2.1"
24-
log = "0.4"
25-
serde = { version = "1.0", features = ["derive"] }
26-
termimad = "0.16"
27-
toml = "0.5"
28-
unicode-width = "0.1.8"
23+
log = "0.4.14"
24+
serde = { version = "1.0.130", features = ["derive"] }
25+
termimad = "0.16.3"
26+
toml = "0.5.8"
27+
unicode-width = "0.1.9"
2928
vte = "0.8"
3029

3130
[profile.release]

src/state.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ use {
55
cursor, execute,
66
style::{Attribute, Color::*, Print},
77
},
8-
minimad::{Alignment, Composite},
98
std::io::Write,
10-
termimad::{Area, CompoundStyle, MadSkin},
9+
termimad::{
10+
minimad::{Alignment, Composite},
11+
Area, CompoundStyle, MadSkin,
12+
},
1113
};
1214

1315
/// contains the currently rendered state of the application,

0 commit comments

Comments
 (0)