Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .vscode/cspell.dictionaries/workspace.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ getrandom
globset
indicatif
itertools
langid
lscolors
mdbook
memchr
Expand All @@ -46,6 +47,7 @@ termsize
termwidth
textwrap
thiserror
unic
ureq
walkdir
winapi
Expand Down
148 changes: 146 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,11 @@ sm3 = "0.4.2"
crc32fast = "1.4.2"
digest = "0.10.7"

# Fluent dependencies
fluent-bundle = "0.15.3"
fluent = "0.16.1"
unic-langid = "0.9.6"

uucore = { version = "0.0.30", package = "uucore", path = "src/uucore" }
uucore_procs = { version = "0.0.30", package = "uucore_procs", path = "src/uucore_procs" }
uu_ls = { version = "0.0.30", path = "src/uu/ls" }
Expand Down
4 changes: 4 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ skip = [
{ name = "thiserror-impl", version = "1.0.69" },
# bindgen
{ name = "itertools", version = "0.13.0" },
# fluent-bundle
{ name = "rustc-hash", version = "1.1.0" },
# fluent-bundle
{ name = "self_cell", version = "0.10.3" },
# ordered-multimap
{ name = "hashbrown", version = "0.14.5" },
# cexpr (via bindgen)
Expand Down
Loading
Loading