1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Split utility files into separate library.

Everything in src/common has been moved to src/uucore. This is defined
as a Cargo library, instead of directly included. This gives us
flexibility to make the library an external crate in the future.

Fixes #717.
This commit is contained in:
Joseph Crail 2015-11-23 20:00:51 -05:00
parent 072f48f039
commit ca1074201f
153 changed files with 353 additions and 399 deletions

View file

@ -85,6 +85,7 @@ all = [
]
[dependencies]
uucore = { path="src/uucore" }
base64 = { optional=true, path="src/base64" }
basename = { optional=true, path="src/basename" }
cat = { optional=true, path="src/cat" }