Skip to content

Commit 032948f

Browse files
author
Stephan Dilly
committed
rename filetree crate to prepare for publish
1 parent bfa83ae commit 032948f

File tree

15 files changed

+13
-13
lines changed

15 files changed

+13
-13
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ keywords = [
2121
[dependencies]
2222
scopetime = { path = "./scopetime", version = "0.1" }
2323
asyncgit = { path = "./asyncgit", version = "0.16" }
24-
filetree = { path = "./filetree" }
24+
filetreelist = { path = "./filetreelist", version = "0.1" }
2525
crossterm = { version = "0.19", features = [ "serde" ] }
2626
clap = { version = "2.33", default-features = false }
2727
tui = { version = "0.15", default-features = false, features = ['crossterm', 'serde'] }
@@ -66,7 +66,7 @@ timing=["scopetime/enabled"]
6666
members=[
6767
"asyncgit",
6868
"scopetime",
69-
"filetree",
69+
"filetreelist",
7070
]
7171

7272
[profile.release]

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ fmt:
4545

4646
clippy:
4747
touch src/main.rs
48-
cargo clean -p gitui -p asyncgit -p scopetime -p filetree
48+
cargo clean -p gitui -p asyncgit -p scopetime -p filetreelist
4949
cargo clippy --workspace --all-features
5050

5151
clippy-nightly:
5252
touch src/main.rs
53-
cargo clean -p gitui -p asyncgit -p scopetime -p filetree
53+
cargo clean -p gitui -p asyncgit -p scopetime -p filetreelist
5454
cargo +nightly clippy --workspace --all-features
5555

5656
check: fmt clippy test

filetree/Cargo.toml renamed to filetreelist/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
2-
name = "filetree"
2+
name = "filetreelist"
33
version = "0.1.0"
44
authors = ["Stephan Dilly <[email protected]>"]
55
edition = "2018"
6-
description = "filetree abstraction based on a sorted path list"
6+
description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more"
77
homepage = "https://github.com/extrawurst/gitui"
88
repository = "https://github.com/extrawurst/gitui"
99
readme = "README.md"
1010
license-file = "LICENSE.md"
1111
categories = ["command-line-utilities"]
12-
keywords = ["gui","cli","terminal","ui"]
12+
keywords = ["gui","cli","terminal","ui","tui"]
1313

1414
[dependencies]
1515
thiserror = "1.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)