1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 04:27:45 +00:00

Merge pull request #1476 from rivy/rf.reorg-codecover

refactor ~ improve code coverage implementation
This commit is contained in:
Sylvestre Ledru 2020-04-14 23:28:51 +02:00 committed by GitHub
commit 36e945d0d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
268 changed files with 736 additions and 538 deletions

View file

@ -1,10 +1,10 @@
name: CICD
# spell-checker:ignore (acronyms) CICD MSVC musl
# spell-checker:ignore (env/flags) Ccodegen Cinline Coverflow RUSTFLAGS
# spell-checker:ignore (env/flags) Ccodegen Coverflow RUSTFLAGS
# spell-checker:ignore (jargon) SHAs deps softprops toolchain
# spell-checker:ignore (names) CodeCOV MacOS MinGW Peltoche rivy
# spell-checker:ignore (shell/tools) choco clippy dmake esac fakeroot gmake grcov halium libssl mkdir popd printf pushd rustc rustfmt rustup shopt
# spell-checker:ignore (shell/tools) choco clippy dmake esac fakeroot gmake grcov halium lcov libssl mkdir popd printf pushd rustc rustfmt rustup shopt
# spell-checker:ignore (misc) alnum gnueabihf issuecomment maint nullglob onexitbegin onexitend uutils
@ -254,6 +254,10 @@ jobs:
shell: bash
run: |
# Info
## commit info
echo "## commit"
echo GITHUB_REF=${GITHUB_REF}
echo GITHUB_SHA=${GITHUB_SHA}
## tooling info display
echo "## tooling"
which gcc >/dev/null 2>&1 && (gcc --version | head -1) || true
@ -317,7 +321,10 @@ jobs:
fail-fast: true
matrix:
# job: [ { os: ubuntu-latest }, { os: macos-latest }, { os: windows-latest } ]
job: [ { os: ubuntu-latest } ] ## cargo-tarpaulin is currently only available on linux
job:
- { os: ubuntu-latest , features: unix }
- { os: macos-latest , features: unix }
- { os: windows-latest , features: windows , toolchain: nightly-x86_64-pc-windows-gnu }
steps:
- uses: actions/checkout@v1
# - name: Reattach HEAD ## may be needed for accurate code coverage info
@ -326,41 +333,100 @@ jobs:
id: vars
shell: bash
run: |
## VARs setup
# toolchain
TOOLCHAIN="nightly" ## default to "nightly" toolchain (required for certain needed compiler flags)
# * use requested TOOLCHAIN if specified
if [ -n "${{ matrix.job.toolchain }}" ]; then TOOLCHAIN="${{ matrix.job.toolchain }}" ; fi
# * use requested TOOLCHAIN if specified
if [ -n "${{ matrix.job.toolchain }}" ]; then TOOLCHAIN="${{ matrix.job.toolchain }}" ; fi
echo set-output name=TOOLCHAIN::${TOOLCHAIN}
echo ::set-output name=TOOLCHAIN::${TOOLCHAIN}
# staging directory
STAGING='_staging'
echo set-output name=STAGING::${STAGING}
echo ::set-output name=STAGING::${STAGING}
# check for CODECOV_TOKEN availability (work-around for inaccessible 'secrets' object for 'if'; see <https://github.community/t5/GitHub-Actions/jobs-lt-job-id-gt-if-does-not-work-with-env-secrets/m-p/38549>)
unset HAS_CODECOV_TOKEN
if [ -n $CODECOV_TOKEN ]; then HAS_CODECOV_TOKEN='true' ; fi
echo set-output name=HAS_CODECOV_TOKEN::${HAS_CODECOV_TOKEN}
echo ::set-output name=HAS_CODECOV_TOKEN::${HAS_CODECOV_TOKEN}
## # check for CODECOV_TOKEN availability (work-around for inaccessible 'secrets' object for 'if'; see <https://github.community/t5/GitHub-Actions/jobs-lt-job-id-gt-if-does-not-work-with-env-secrets/m-p/38549>)
## # note: CODECOV_TOKEN / HAS_CODECOV_TOKEN is not needed for public repositories when using AppVeyor, Azure Pipelines, CircleCI, GitHub Actions, Travis (see <https://docs.codecov.io/docs/about-the-codecov-bash-uploader#section-upload-token>)
## unset HAS_CODECOV_TOKEN
## if [ -n $CODECOV_TOKEN ]; then HAS_CODECOV_TOKEN='true' ; fi
## echo set-output name=HAS_CODECOV_TOKEN::${HAS_CODECOV_TOKEN}
## echo ::set-output name=HAS_CODECOV_TOKEN::${HAS_CODECOV_TOKEN}
# target-specific options
# * CARGO_FEATURES_OPTION
CARGO_FEATURES_OPTION='--all-features' ; ## default to '--all-features' for code coverage
if [ -n "${{ matrix.job.features }}" ]; then CARGO_FEATURES_OPTION='--features "${{ matrix.job.features }}"' ; fi
echo set-output name=CARGO_FEATURES_OPTION::${CARGO_FEATURES_OPTION}
echo ::set-output name=CARGO_FEATURES_OPTION::${CARGO_FEATURES_OPTION}
# * CODECOV_FLAGS
CODECOV_FLAGS=$( echo "${{ matrix.job.os }}" | sed 's/[^[:alnum:]]/_/g' )
echo set-output name=CODECOV_FLAGS::${CODECOV_FLAGS}
echo ::set-output name=CODECOV_FLAGS::${CODECOV_FLAGS}
- name: rust toolchain ~ install
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ steps.vars.outputs.TOOLCHAIN }}
default: true
profile: minimal # minimal component installation (ie, no documentation)
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} --no-fail-fast
env:
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
- name: Create all needed build/work directories
CARGO_INCREMENTAL: '0'
RUSTC_WRAPPER: ''
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads'
# RUSTUP_TOOLCHAIN: ${{ steps.vars.outputs.TOOLCHAIN }}
- name: "`grcov` ~ install"
uses: actions-rs/install@v0.1
with:
crate: grcov
version: latest
use-tool-cache: true
- name: "`grcov` ~ display coverage files" ## (for debugging)
shell: bash
run: |
## create build/work space
mkdir -p '${{ steps.vars.outputs.STAGING }}/work'
- name: Install required packages
# display coverage files (per `grcov`)
grcov . --output-type files | sort --unique
- name: "`grcov` ~ configure + fixups" ## note: fixups, when needed, must be done *after* testing so that coverage files exist for renaming
shell: bash
run: |
sudo apt-get -y install libssl-dev
pushd '${{ steps.vars.outputs.STAGING }}/work' >/dev/null
wget --no-verbose https://github.com/xd009642/tarpaulin/releases/download/0.9.3/cargo-tarpaulin-0.9.3-travis.tar.gz
tar xf cargo-tarpaulin-0.9.3-travis.tar.gz
cp cargo-tarpaulin "$(dirname -- "$(which cargo)")"/
popd >/dev/null
- name: Generate coverage
# create `grcov` configuration file
GRCOV_CONFIG_DIR="${GITHUB_WORKSPACE}/.github/actions-rs"
mkdir -p "${GRCOV_CONFIG_DIR}"
GRCOV_CONFIG_FILE="${GRCOV_CONFIG_DIR}/grcov.yml"
echo "branch: true" >> "${GRCOV_CONFIG_FILE}"
echo "ignore:" >> "${GRCOV_CONFIG_FILE}"
echo "- \"build.rs\"" >> "${GRCOV_CONFIG_FILE}"
echo "- \"/*\"" >> "${GRCOV_CONFIG_FILE}"
echo "- \"[a-zA-Z]:/*\"" >> "${GRCOV_CONFIG_FILE}"
cat "${GRCOV_CONFIG_FILE}"
# ## 'actions-rs/grcov@v0.1' expects coverage files (*.gc*) to be prefixed with the crate name (using '_' in place of '-')
# ## * uutils workspace packages
# prefix="uu_"
# for f in "target/debug/deps/uu_"*-*.gc* ; do to="${f/uu_/${PROJECT_NAME}-uu_}" ; mv "$f" "$to" ; echo "mv $f $to" ; done
# ## * tests
# for f in "target/debug/deps/tests"-*.gc* ; do to="${f/tests/${PROJECT_NAME}-tests}" ; mv "$f" "$to" ; echo "mv $f $to" ; done
# - name: Generate coverage data (via `grcov`)
# id: coverage
# uses: actions-rs/grcov@v0.1
- name: Generate coverage data (via `grcov`)
id: coverage
shell: bash
run: |
cargo tarpaulin --out Xml
- name: Upload coverage results (CodeCov.io)
# CODECOV_TOKEN (aka, "Repository Upload Token" for REPO from CodeCov.io) ## set via REPO/Settings/Secrets
# if: secrets.CODECOV_TOKEN (not supported {yet?}; see <https://github.community/t5/GitHub-Actions/jobs-lt-job-id-gt-if-does-not-work-with-env-secrets/m-p/38549>)
if: steps.vars.outputs.HAS_CODECOV_TOKEN
run: |
# CodeCov.io
cargo tarpaulin --out Xml
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
# generate coverage data
COVERAGE_REPORT_DIR="target/debug"
COVERAGE_REPORT_FILE="${COVERAGE_REPORT_DIR}/lcov.info"
mkdir -p "${COVERAGE_REPORT_DIR}"
grcov . --output-type lcov --output-file "${COVERAGE_REPORT_FILE}" --branch ${GRCOV_IGNORE_OPTION} --ignore build.rs --ignore "/*" --ignore "[a-zA-Z]:/*"
echo ::set-output name=report::${COVERAGE_REPORT_FILE}
- name: Upload coverage results (to Codecov.io)
uses: codecov/codecov-action@v1
# if: steps.vars.outputs.HAS_CODECOV_TOKEN
with:
# token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ steps.coverage.outputs.report }}
## flags: IntegrationTests, UnitTests, ${{ steps.vars.outputs.CODECOV_FLAGS }}
flags: ${{ steps.vars.outputs.CODECOV_FLAGS }}
name: codecov-umbrella
fail_ci_if_error: true

288
Cargo.lock generated
View file

@ -38,7 +38,7 @@ name = "arch"
version = "0.0.1"
dependencies = [
"platform-info 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -65,7 +65,6 @@ dependencies = [
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -82,21 +81,21 @@ name = "base32"
version = "0.0.1"
dependencies = [
"clippy 0.0.212 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
name = "base64"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
name = "basename"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -162,9 +161,9 @@ dependencies = [
name = "cat"
version = "0.0.1"
dependencies = [
"quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"unix_socket 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -181,7 +180,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "chgrp"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"walkdir 2.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -190,7 +189,7 @@ name = "chmod"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"walker 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -200,7 +199,7 @@ version = "0.0.1"
dependencies = [
"clippy 0.0.212 (registry+https://github.com/rust-lang/crates.io-index)",
"glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"walkdir 2.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -219,7 +218,7 @@ name = "chroot"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -227,7 +226,7 @@ name = "cksum"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -250,7 +249,7 @@ version = "0.0.212"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
"backtrace 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)",
"clippy_lints 0.0.212 (registry+https://github.com/rust-lang/crates.io-index)",
"num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
@ -294,7 +293,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -307,8 +306,8 @@ dependencies = [
"ioctl-sys 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"walkdir 2.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
"xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
@ -392,7 +391,7 @@ dependencies = [
name = "cut"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -406,7 +405,7 @@ version = "0.0.1"
dependencies = [
"chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -422,7 +421,7 @@ name = "dircolors"
version = "0.0.1"
dependencies = [
"glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -430,7 +429,7 @@ name = "dirname"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -438,14 +437,19 @@ name = "du"
version = "0.0.1"
dependencies = [
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
name = "dunce"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "echo"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -460,7 +464,7 @@ dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"rust-ini 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -468,7 +472,7 @@ name = "error-chain"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
"backtrace 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -477,7 +481,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -486,7 +490,7 @@ version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"onig 4.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -494,27 +498,26 @@ name = "factor"
version = "0.0.1"
dependencies = [
"rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
name = "failure"
version = "0.1.5"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
"failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"backtrace 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)",
"failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "failure_derive"
version = "0.1.5"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)",
"synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
"synstructure 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -526,7 +529,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "false"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -545,7 +548,7 @@ version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -557,7 +560,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "fold"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -596,7 +599,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "groups"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -618,7 +621,7 @@ dependencies = [
"sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"sha3 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -626,7 +629,7 @@ name = "head"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -639,7 +642,7 @@ name = "hostid"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -648,7 +651,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -656,7 +659,7 @@ dependencies = [
name = "id"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -681,7 +684,7 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -689,6 +692,17 @@ name = "ioctl-sys"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "isatty"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "itertools"
version = "0.7.11"
@ -715,7 +729,7 @@ name = "join"
version = "0.0.1"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -732,7 +746,7 @@ name = "kill"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -752,7 +766,7 @@ dependencies = [
"cpp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cpp_build 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -760,7 +774,7 @@ name = "link"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -768,7 +782,7 @@ name = "ln"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -776,7 +790,7 @@ name = "logname"
version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -784,13 +798,14 @@ name = "ls"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"isatty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"number_prefix 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
"term_grid 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"termsize 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -822,7 +837,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -831,7 +846,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -840,7 +855,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -850,7 +865,7 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
"tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -861,7 +876,7 @@ dependencies = [
"nix 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -869,7 +884,7 @@ name = "mv"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -878,7 +893,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -914,7 +929,7 @@ dependencies = [
"memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"regex-syntax 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -928,7 +943,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -938,7 +953,7 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -975,7 +990,7 @@ name = "numfmt"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -991,7 +1006,7 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"half 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1019,7 +1034,7 @@ name = "paste"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1028,7 +1043,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1040,7 +1055,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "pinky"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1062,7 +1077,7 @@ name = "printenv"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1070,7 +1085,7 @@ name = "printf"
version = "0.0.1"
dependencies = [
"itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1091,7 +1106,7 @@ dependencies = [
"memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"regex-syntax 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1108,12 +1123,12 @@ name = "pwd"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
name = "quick-error"
version = "1.2.2"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
@ -1277,7 +1292,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1285,7 +1300,7 @@ name = "realpath"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1326,7 +1341,7 @@ name = "relpath"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1343,7 +1358,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"walkdir 2.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -1352,7 +1367,7 @@ name = "rmdir"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1413,7 +1428,7 @@ name = "seq"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1478,7 +1493,7 @@ dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1487,7 +1502,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1495,7 +1510,7 @@ name = "sleep"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1510,7 +1525,7 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1518,7 +1533,7 @@ name = "split"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1527,7 +1542,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1537,7 +1552,7 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libstdbuf 0.0.1",
"tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1550,7 +1565,17 @@ name = "sum"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
name = "syn"
version = "0.11.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
"synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -1570,19 +1595,25 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "synstructure"
version = "0.10.1"
name = "synom"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "synstructure"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -1590,7 +1621,7 @@ name = "tac"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1601,7 +1632,7 @@ dependencies = [
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -1611,7 +1642,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1672,7 +1703,7 @@ version = "0.0.1"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1708,7 +1739,7 @@ dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1726,7 +1757,7 @@ dependencies = [
"filetime 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1736,14 +1767,14 @@ dependencies = [
"bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
name = "true"
version = "0.0.1"
dependencies = [
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1751,7 +1782,7 @@ name = "truncate"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1759,7 +1790,7 @@ name = "tsort"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1768,7 +1799,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1787,7 +1818,7 @@ version = "0.0.1"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"platform-info 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1796,7 +1827,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1840,7 +1871,7 @@ name = "uniq"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1858,7 +1889,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1867,7 +1898,7 @@ version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1885,7 +1916,7 @@ name = "users"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -1895,12 +1926,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "uucore"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
version = "0.0.2"
source = "git+https://github.com/rivy/rust.uucore?tag=0.0.2#420b20f67267357f4f0f626a1e8a00a27304623d"
dependencies = [
"backtrace 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)",
"data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"dunce 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1916,6 +1949,7 @@ name = "uutils"
version = "0.0.1"
dependencies = [
"arch 0.0.1",
"backtrace 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)",
"base32 0.0.1",
"base64 0.0.1",
"basename 0.0.1",
@ -2014,7 +2048,7 @@ dependencies = [
"unlink 0.0.1",
"uptime 0.0.1",
"users 0.0.1",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"wc 0.0.1",
"who 0.0.1",
"whoami 0.0.1",
@ -2051,7 +2085,7 @@ name = "wc"
version = "0.0.1"
dependencies = [
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -2059,7 +2093,7 @@ name = "who"
version = "0.0.1"
dependencies = [
"clippy 0.0.212 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[[package]]
@ -2068,7 +2102,7 @@ version = "0.0.1"
dependencies = [
"advapi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -2130,7 +2164,7 @@ name = "yes"
version = "0.0.1"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)",
]
[metadata]
@ -2140,7 +2174,7 @@ dependencies = [
"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90"
"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799"
"checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637"
"checksum backtrace 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "ada4c783bb7e7443c14e0480f429ae2cc99da95065aeab7ee1b81ada0419404f"
"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6"
"checksum bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e84c238982c4b1e1ee668d136c510c67a13465279c0cb367ea6baf6310620a80"
"checksum bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f59bbe95d4e52a6398ec21238d31577f2b28a9d86807f06ca59d191d8440d0bb"
@ -2167,10 +2201,11 @@ dependencies = [
"checksum cpp_synom 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1fc8da5694233b646150c785118f77835ad0a49680c7f312a10ef30957c67b6d"
"checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97"
"checksum digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e5b29bf156f3f4b3c4f610a25ff69370616ae6e0657d416de22645483e72af0a"
"checksum dunce 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0ad6bf6a88548d1126045c413548df1453d9be094a8ab9fd59bf1fdd338da4f"
"checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b"
"checksum error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff511d5dc435d703f4971bc399647c9bc38e20cb41452e3b9feb4765419ed3f3"
"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
"checksum failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "934799b6c1de475a012a02dab0ace1ace43789ee4b99bcfbf1a2e3e8ced5de82"
"checksum failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c7cdda555bb90c9bb67a3b670a0f42de8e73f5981524123ad8578aafec8ddb8b"
"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
"checksum filetime 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2f8c63033fcba1f51ef744505b3cad42510432b904c062afa67ad7ece008429d"
"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
@ -2184,6 +2219,7 @@ dependencies = [
"checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
"checksum if_chain 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4bac95d9aa0624e7b78187d6fb8ab012b41d9f6f54b1bcb61e61c4845f8357ec"
"checksum ioctl-sys 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5e2c4b26352496eaaa8ca7cfa9bd99e93419d3f7983dc6e99c2a35fe9e33504a"
"checksum isatty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e31a8281fc93ec9693494da65fbf28c0c2aa60a2eaec25dc58e2f31952e95edc"
"checksum itertools 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)" = "0d47946d458e94a1b7bcabbf6521ea7c037062c81f534615abcad76e84d4970d"
"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358"
"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
@ -2209,7 +2245,7 @@ dependencies = [
"checksum platform-info 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f2fd076acdc7a98374de6e300bf3af675997225bef21aecac2219553f04dd7e8"
"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
"checksum pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d6fdf85cda6cadfae5428a54661d431330b312bc767ddbc57adbedc24da66e32"
"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
"checksum quine-mc_cluskey 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "07589615d719a60c8dd8a4622e7946465dfef20d1a428f969e3443e7386d5f45"
"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
"checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db"
@ -2248,8 +2284,10 @@ dependencies = [
"checksum sha3 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "26405905b6a56a94c60109cfda62610507ac14a65be531f5767dec5c5a8dd6a0"
"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
"checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
"checksum syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)" = "a1393e4a97a19c01e900df2aec855a29f71cf02c402e2f443b8d2747c25c5dbe"
"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015"
"checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
"checksum synstructure 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a761d12e6d8dcb4dcf952a7a89b475e3a9d69e4a69307e01a470977642914bd"
"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
"checksum tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11ce2fe9db64b842314052e2421ac61a73ce41b898dc8e3750398b219c5fc1e0"
"checksum term_grid 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "230d3e804faaed5a39b08319efb797783df2fd9671b39b7596490cb486d702cf"
@ -2270,7 +2308,7 @@ dependencies = [
"checksum unix_socket 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6aa2700417c405c38f5e6902d699345241c28c0b7ade4abaad71e35a87eb1564"
"checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
"checksum uucore 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d9991e24be65c5df85c9f16445554785a68e5ae7ec7feb230424ba35c24ebad7"
"checksum uucore 0.0.2 (git+https://github.com/rivy/rust.uucore?tag=0.0.2)" = "<none>"
"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
"checksum walkdir 2.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "c7904a7e2bb3cdf0cf5e783f44204a85a37a93151738fa349f06680f59a98b45"

View file

@ -194,99 +194,99 @@ feat_common_core = [
[dependencies]
uucore = "0.0.2"
arch = { optional=true, path="src/arch" }
base32 = { optional=true, path="src/base32" }
base64 = { optional=true, path="src/base64" }
basename = { optional=true, path="src/basename" }
cat = { optional=true, path="src/cat" }
chgrp = { optional=true, path="src/chgrp" }
chmod = { optional=true, path="src/chmod" }
chown = { optional=true, path="src/chown" }
chroot = { optional=true, path="src/chroot" }
cksum = { optional=true, path="src/cksum" }
comm = { optional=true, path="src/comm" }
cp = { optional=true, path="src/cp" }
cut = { optional=true, path="src/cut" }
date = { optional=true, path="src/date" }
dircolors= { optional=true, path="src/dircolors" }
dirname = { optional=true, path="src/dirname" }
du = { optional=true, path="src/du" }
echo = { optional=true, path="src/echo" }
env = { optional=true, path="src/env" }
expand = { optional=true, path="src/expand" }
expr = { optional=true, path="src/expr" }
factor = { optional=true, path="src/factor" }
false = { optional=true, path="src/false" }
fmt = { optional=true, path="src/fmt" }
fold = { optional=true, path="src/fold" }
groups = { optional=true, path="src/groups" }
hashsum = { optional=true, path="src/hashsum" }
head = { optional=true, path="src/head" }
hostid = { optional=true, path="src/hostid" }
hostname = { optional=true, path="src/hostname" }
id = { optional=true, path="src/id" }
install = { optional=true, path="src/install" }
join = { optional=true, path="src/join" }
kill = { optional=true, path="src/kill" }
link = { optional=true, path="src/link" }
ln = { optional=true, path="src/ln" }
ls = { optional=true, path="src/ls" }
logname = { optional=true, path="src/logname" }
mkdir = { optional=true, path="src/mkdir" }
mkfifo = { optional=true, path="src/mkfifo" }
mknod = { optional=true, path="src/mknod" }
mktemp = { optional=true, path="src/mktemp" }
more = { optional=true, path="src/more" }
mv = { optional=true, path="src/mv" }
nice = { optional=true, path="src/nice" }
nl = { optional=true, path="src/nl" }
nohup = { optional=true, path="src/nohup" }
nproc = { optional=true, path="src/nproc" }
numfmt = { optional=true, path="src/numfmt" }
od = { optional=true, path="src/od" }
paste = { optional=true, path="src/paste" }
pathchk = { optional=true, path="src/pathchk" }
pinky = { optional=true, path="src/pinky" }
printenv = { optional=true, path="src/printenv" }
printf = { optional=true, path="src/printf" }
ptx = { optional=true, path="src/ptx" }
pwd = { optional=true, path="src/pwd" }
readlink = { optional=true, path="src/readlink" }
realpath = { optional=true, path="src/realpath" }
relpath = { optional=true, path="src/relpath" }
rm = { optional=true, path="src/rm" }
rmdir = { optional=true, path="src/rmdir" }
seq = { optional=true, path="src/seq" }
shred = { optional=true, path="src/shred" }
shuf = { optional=true, path="src/shuf" }
sleep = { optional=true, path="src/sleep" }
sort = { optional=true, path="src/sort" }
split = { optional=true, path="src/split" }
stat = { optional=true, path="src/stat" }
stdbuf = { optional=true, path="src/stdbuf" }
sum = { optional=true, path="src/sum" }
sync = { optional=true, path="src/sync" }
tac = { optional=true, path="src/tac" }
tail = { optional=true, path="src/tail" }
tee = { optional=true, path="src/tee" }
test = { optional=true, path="src/test" }
timeout = { optional=true, path="src/timeout" }
touch = { optional=true, path="src/touch" }
tr = { optional=true, path="src/tr" }
true = { optional=true, path="src/true" }
truncate = { optional=true, path="src/truncate" }
tsort = { optional=true, path="src/tsort" }
tty = { optional=true, path="src/tty" }
uname = { optional=true, path="src/uname" }
unexpand = { optional=true, path="src/unexpand" }
uniq = { optional=true, path="src/uniq" }
unlink = { optional=true, path="src/unlink" }
uptime = { optional=true, path="src/uptime" }
users = { optional=true, path="src/users" }
wc = { optional=true, path="src/wc" }
who = { optional=true, path="src/who" }
whoami = { optional=true, path="src/whoami" }
yes = { optional=true, path="src/yes" }
arch = { optional=true, path="src/uu/arch" }
base32 = { optional=true, path="src/uu/base32" }
base64 = { optional=true, path="src/uu/base64" }
basename = { optional=true, path="src/uu/basename" }
cat = { optional=true, path="src/uu/cat" }
chgrp = { optional=true, path="src/uu/chgrp" }
chmod = { optional=true, path="src/uu/chmod" }
chown = { optional=true, path="src/uu/chown" }
chroot = { optional=true, path="src/uu/chroot" }
cksum = { optional=true, path="src/uu/cksum" }
comm = { optional=true, path="src/uu/comm" }
cp = { optional=true, path="src/uu/cp" }
cut = { optional=true, path="src/uu/cut" }
date = { optional=true, path="src/uu/date" }
dircolors= { optional=true, path="src/uu/dircolors" }
dirname = { optional=true, path="src/uu/dirname" }
du = { optional=true, path="src/uu/du" }
echo = { optional=true, path="src/uu/echo" }
env = { optional=true, path="src/uu/env" }
expand = { optional=true, path="src/uu/expand" }
expr = { optional=true, path="src/uu/expr" }
factor = { optional=true, path="src/uu/factor" }
false = { optional=true, path="src/uu/false" }
fmt = { optional=true, path="src/uu/fmt" }
fold = { optional=true, path="src/uu/fold" }
groups = { optional=true, path="src/uu/groups" }
hashsum = { optional=true, path="src/uu/hashsum" }
head = { optional=true, path="src/uu/head" }
hostid = { optional=true, path="src/uu/hostid" }
hostname = { optional=true, path="src/uu/hostname" }
id = { optional=true, path="src/uu/id" }
install = { optional=true, path="src/uu/install" }
join = { optional=true, path="src/uu/join" }
kill = { optional=true, path="src/uu/kill" }
link = { optional=true, path="src/uu/link" }
ln = { optional=true, path="src/uu/ln" }
ls = { optional=true, path="src/uu/ls" }
logname = { optional=true, path="src/uu/logname" }
mkdir = { optional=true, path="src/uu/mkdir" }
mkfifo = { optional=true, path="src/uu/mkfifo" }
mknod = { optional=true, path="src/uu/mknod" }
mktemp = { optional=true, path="src/uu/mktemp" }
more = { optional=true, path="src/uu/more" }
mv = { optional=true, path="src/uu/mv" }
nice = { optional=true, path="src/uu/nice" }
nl = { optional=true, path="src/uu/nl" }
nohup = { optional=true, path="src/uu/nohup" }
nproc = { optional=true, path="src/uu/nproc" }
numfmt = { optional=true, path="src/uu/numfmt" }
od = { optional=true, path="src/uu/od" }
paste = { optional=true, path="src/uu/paste" }
pathchk = { optional=true, path="src/uu/pathchk" }
pinky = { optional=true, path="src/uu/pinky" }
printenv = { optional=true, path="src/uu/printenv" }
printf = { optional=true, path="src/uu/printf" }
ptx = { optional=true, path="src/uu/ptx" }
pwd = { optional=true, path="src/uu/pwd" }
readlink = { optional=true, path="src/uu/readlink" }
realpath = { optional=true, path="src/uu/realpath" }
relpath = { optional=true, path="src/uu/relpath" }
rm = { optional=true, path="src/uu/rm" }
rmdir = { optional=true, path="src/uu/rmdir" }
seq = { optional=true, path="src/uu/seq" }
shred = { optional=true, path="src/uu/shred" }
shuf = { optional=true, path="src/uu/shuf" }
sleep = { optional=true, path="src/uu/sleep" }
sort = { optional=true, path="src/uu/sort" }
split = { optional=true, path="src/uu/split" }
stat = { optional=true, path="src/uu/stat" }
stdbuf = { optional=true, path="src/uu/stdbuf" }
sum = { optional=true, path="src/uu/sum" }
sync = { optional=true, path="src/uu/sync" }
tac = { optional=true, path="src/uu/tac" }
tail = { optional=true, path="src/uu/tail" }
tee = { optional=true, path="src/uu/tee" }
test = { optional=true, path="src/uu/test" }
timeout = { optional=true, path="src/uu/timeout" }
touch = { optional=true, path="src/uu/touch" }
tr = { optional=true, path="src/uu/tr" }
true = { optional=true, path="src/uu/true" }
truncate = { optional=true, path="src/uu/truncate" }
tsort = { optional=true, path="src/uu/tsort" }
tty = { optional=true, path="src/uu/tty" }
uname = { optional=true, path="src/uu/uname" }
unexpand = { optional=true, path="src/uu/unexpand" }
uniq = { optional=true, path="src/uu/uniq" }
unlink = { optional=true, path="src/uu/unlink" }
uptime = { optional=true, path="src/uu/uptime" }
users = { optional=true, path="src/uu/users" }
wc = { optional=true, path="src/uu/wc" }
who = { optional=true, path="src/uu/who" }
whoami = { optional=true, path="src/uu/whoami" }
yes = { optional=true, path="src/uu/yes" }
#
# * transitive dependency via 'failure'; pin to <= v0.3.30 to avoid increasing MinSRV to v1.33.0
backtrace = ">= 0.3.3, <= 0.3.30"
@ -308,7 +308,7 @@ unix_socket = "0.5.0"
[[bin]]
name = "uutils"
path = "src/uutils/uutils.rs"
path = "src/bin/uutils.rs"
[[test]]
name = "tests"

View file

@ -3,11 +3,11 @@ name = "arch"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_arch"
path = "arch.rs"
path = "src/arch.rs"
[dependencies]
platform-info = "0.0.1"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "arch"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "base32"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_base32"
path = "base32.rs"
path = "src/base32.rs"
[dependencies]
uucore = { version = "0.0.2", features = ["encoding"] }
@ -16,4 +16,4 @@ clippy = { version = "0.0.212", optional = true }
[[bin]]
name = "base32"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -12,7 +12,7 @@
extern crate uucore;
use uucore::encoding::Format;
#[path = "../base64/base_common.rs"]
#[path = "../../base64/src/base_common.rs"]
mod base_common;
static SYNTAX: &str = "[OPTION]... [FILE]";

View file

@ -3,15 +3,15 @@ name = "base64"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_base64"
path = "base64.rs"
path = "src/base64.rs"
[dependencies]
uucore = { version = "0.0.2", features = ["encoding"] }
[[bin]]
name = "base64"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,15 +3,15 @@ name = "basename"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_basename"
path = "basename.rs"
path = "src/basename.rs"
[dependencies]
uucore = "0.0.2"
[[bin]]
name = "basename"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "cat"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_cat"
path = "cat.rs"
path = "src/cat.rs"
[dependencies]
quick-error = "1.2.3"
@ -18,4 +18,4 @@ unix_socket = "0.5.0"
[[bin]]
name = "cat"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

0
src/cat/cat.rs → src/uu/cat/src/cat.rs Executable file → Normal file
View file

View file

@ -3,11 +3,11 @@ name = "chgrp"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_chgrp"
path = "chgrp.rs"
path = "src/chgrp.rs"
[dependencies]
uucore = { version = "0.0.2", features = ["entries", "fs"] }
@ -15,4 +15,4 @@ walkdir = "2.2.8"
[[bin]]
name = "chgrp"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "chmod"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_chmod"
path = "chmod.rs"
path = "src/chmod.rs"
[dependencies]
libc = "0.2.42"
@ -16,4 +16,4 @@ walker = "1.0.0"
[[bin]]
name = "chmod"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "chown"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_chown"
path = "chown.rs"
path = "src/chown.rs"
[dependencies]
glob = "0.3.0"
@ -20,4 +20,4 @@ optional = true
[[bin]]
name = "chown"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "chroot"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_chroot"
path = "chroot.rs"
path = "src/chroot.rs"
[dependencies]
getopts = "0.2.18"
@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["entries"] }
[[bin]]
name = "chroot"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -6,7 +6,7 @@ license = "MIT"
[lib]
name = "uu_cksum"
path = "cksum.rs"
path = "src/cksum.rs"
[dependencies]
libc = "0.2.42"
@ -14,4 +14,4 @@ uucore = "0.0.2"
[[bin]]
name = "cksum"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -15,7 +15,7 @@ use std::path::Path;
const CRC_TABLE_LEN: usize = 256;
#[path = "../#common/mkmain.rs"]
#[path = "../../common/mkmain.rs"]
mod mkmain;
fn main() {

View file

@ -3,11 +3,11 @@ name = "comm"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_comm"
path = "comm.rs"
path = "src/comm.rs"
[dependencies]
getopts = "0.2.18"
@ -16,4 +16,4 @@ uucore = "0.0.2"
[[bin]]
name = "comm"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -6,11 +6,11 @@ authors = [
"Joshua S. Miller <jsmiller@uchicago.edu>",
]
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_cp"
path = "cp.rs"
path = "src/cp.rs"
[dependencies]
clap = "2.32.0"
@ -33,4 +33,4 @@ xattr="0.2.1"
[[bin]]
name = "cp"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,15 +3,15 @@ name = "cut"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_cut"
path = "cut.rs"
path = "src/cut.rs"
[dependencies]
uucore = "0.0.2"
[[bin]]
name = "cut"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "date"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_date"
path = "date.rs"
path = "src/date.rs"
[dependencies]
chrono = "0.4.4"
@ -16,4 +16,4 @@ uucore = "0.0.2"
[[bin]]
name = "date"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "dircolors"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_dircolors"
path = "dircolors.rs"
path = "src/dircolors.rs"
[dependencies]
glob = "0.3.0"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "dircolors"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "dirname"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_dirname"
path = "dirname.rs"
path = "src/dirname.rs"
[dependencies]
libc = "0.2.42"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "dirname"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "du"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_du"
path = "du.rs"
path = "src/du.rs"
[dependencies]
time = "0.1.40"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "du"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,15 +3,15 @@ name = "echo"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_echo"
path = "echo.rs"
path = "src/echo.rs"
[dependencies]
uucore = "0.0.2"
[[bin]]
name = "echo"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -4,12 +4,12 @@ version = "0.0.1"
authors = ["uutils developers"]
description = "Set each NAME to VALUE in the environment and run COMMAND"
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
edition = "2018"
[lib]
name = "uu_env"
path = "env.rs"
path = "src/env.rs"
[dependencies]
clap = "2.33"
@ -19,4 +19,4 @@ uucore = "0.0.2"
[[bin]]
name = "env"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "expand"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_expand"
path = "expand.rs"
path = "src/expand.rs"
[dependencies]
getopts = "0.2.18"
@ -16,4 +16,4 @@ uucore = "0.0.2"
[[bin]]
name = "expand"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "expr"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_expr"
path = "expr.rs"
path = "src/expr.rs"
[dependencies]
libc = "0.2.42"
@ -16,4 +16,4 @@ uucore = "0.0.2"
[[bin]]
name = "expr"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -6,7 +6,7 @@ license = "MIT"
[lib]
name = "uu_factor"
path = "factor.rs"
path = "src/factor.rs"
[dependencies]
rand = "0.5"
@ -14,4 +14,4 @@ uucore = "0.0.2"
[[bin]]
name = "factor"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -29,11 +29,12 @@ use std::u64::MAX as MAX_U64;
use numeric::is_prime;
#[cfg(test)]
#[path = "src/numeric.rs"]
mod numeric;
mod sieve;
#[path = "../#common/mkmain.rs"]
#[path = "../../common/mkmain.rs"]
mod mkmain;
// extended Euclid algorithm

View file

@ -3,15 +3,15 @@ name = "false"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_false"
path = "false.rs"
path = "src/false.rs"
[dependencies]
uucore = "0.0.2"
[[bin]]
name = "false"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "fmt"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_fmt"
path = "fmt.rs"
path = "src/fmt.rs"
[dependencies]
libc = "0.2.42"
@ -16,4 +16,4 @@ uucore = "0.0.2"
[[bin]]
name = "fmt"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,15 +3,15 @@ name = "fold"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_fold"
path = "fold.rs"
path = "src/fold.rs"
[dependencies]
uucore = "0.0.2"
[[bin]]
name = "fold"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,15 +3,15 @@ name = "groups"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_groups"
path = "groups.rs"
path = "src/groups.rs"
[dependencies]
uucore = { version = "0.0.2", features = ["entries"] }
[[bin]]
name = "groups"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "hashsum"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_hashsum"
path = "hashsum.rs"
path = "src/hashsum.rs"
[dependencies]
digest = "0.6.2"
@ -24,4 +24,4 @@ uucore = "0.0.2"
[[bin]]
name = "hashsum"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "head"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_head"
path = "head.rs"
path = "src/head.rs"
[dependencies]
libc = "0.2.42"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "head"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "hostid"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_hostid"
path = "hostid.rs"
path = "src/hostid.rs"
[dependencies]
libc = "0.2.42"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "hostid"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "hostname"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_hostname"
path = "hostname.rs"
path = "src/hostname.rs"
[dependencies]
getopts = "0.2"
@ -17,4 +17,4 @@ winapi = { version = "0.3", features = ["sysinfoapi", "winsock2"] }
[[bin]]
name = "hostname"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,15 +3,15 @@ name = "id"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_id"
path = "id.rs"
path = "src/id.rs"
[dependencies]
uucore = { version = "0.0.2", features = ["entries", "process"] }
[[bin]]
name = "id"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "install"
version = "0.0.1"
authors = ["Ben Eills <ben@beneills.com>"]
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_install"
path = "install.rs"
path = "src/install.rs"
[dependencies]
getopts = "0.2.18"
@ -19,4 +19,4 @@ time = "0.1.40"
[[bin]]
name = "install"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "join"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_join"
path = "join.rs"
path = "src/join.rs"
[dependencies]
clap = "2.32.0"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "join"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

0
src/join/join.rs → src/uu/join/src/join.rs Executable file → Normal file
View file

View file

@ -3,11 +3,11 @@ name = "kill"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_kill"
path = "kill.rs"
path = "src/kill.rs"
[dependencies]
libc = "0.2.42"
@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["signals"] }
[[bin]]
name = "kill"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "link"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_link"
path = "link.rs"
path = "src/link.rs"
[dependencies]
libc = "0.2.42"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "link"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "ln"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_ln"
path = "ln.rs"
path = "src/ln.rs"
[dependencies]
libc = "0.2.42"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "ln"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "logname"
version = "0.0.1"
authors = []
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_logname"
path = "logname.rs"
path = "src/logname.rs"
[dependencies]
libc = "0.2.42"
@ -15,4 +15,4 @@ uucore = "0.0.2"
[[bin]]
name = "logname"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

View file

@ -3,11 +3,11 @@ name = "ls"
version = "0.0.1"
authors = ["Jeremiah Peschka <jeremiah.peschka@gmail.com>"]
license = "MIT"
build = "../#common/mkmain.rs"
build = "../../common/mkmain.rs"
[lib]
name = "uu_ls"
path = "ls.rs"
path = "src/ls.rs"
[dependencies]
getopts = "0.2.18"
@ -22,4 +22,4 @@ uucore = { version = "0.0.2", features = ["entries", "fs"] }
[[bin]]
name = "ls"
path = "../#common/uumain.rs"
path = "../../common/uumain.rs"

Some files were not shown because too many files have changed in this diff Show more