Skip to content

Commit e936c3a

Browse files
committed
bump deps, packages to 0.6
1 parent ffd6346 commit e936c3a

File tree

6 files changed

+48
-49
lines changed

6 files changed

+48
-49
lines changed

Cargo.lock

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

kondo-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kondo-lib"
3-
version = "0.3.0"
3+
version = "0.6.0"
44
authors = ["Trent Billington <[email protected]>"]
55
edition = "2018"
66
description = "Shared code lib for kondo and kondo-ui."

kondo-ui/Cargo.lock

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

kondo-ui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kondo-ui"
3-
version = "0.3.0"
3+
version = "0.6.0"
44
authors = ["Trent Billington <[email protected]>"]
55
description = """
66
kondo-ui is a filesystem cleaning tool that recursively searches directories
@@ -21,7 +21,7 @@ druid = "0.7"
2121

2222
[dependencies.kondo-lib]
2323
path = "../kondo-lib"
24-
version = "0.3"
24+
version = "0.6"
2525

2626
[profile.release]
2727
incremental = false

kondo-ui/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ fn spawn_scanner_thread(
188188
scan(&p, &options)
189189
.filter_map(|p| p.ok())
190190
.for_each(|project| {
191-
let name = project.name();
191+
let name = project.name().to_string();
192192
let project_size = project.size_dirs(&options);
193193
let display = path::Path::new(&name)
194194
.file_name()

kondo/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ structopt = "0.3"
2323

2424
[dependencies.kondo-lib]
2525
path = "../kondo-lib"
26-
version = "0.3"
27-
26+
version = "0.6"

0 commit comments

Comments
 (0)