Created
April 20, 2018 11:23
-
-
Save ryantm/478abe4c1470eb6b45919b8e1eca9538 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/nix/store/9wbh0aq3a46hkm7ybz7mi5ns2s1hwsp9-leatherman-1.4.1 | |
├── include | |
│ ├── boost | |
│ │ └── nowide | |
│ │ ├── args.hpp | |
│ │ ├── cenv.hpp | |
│ │ ├── config.hpp | |
│ │ ├── convert.hpp | |
│ │ ├── cstdio.hpp | |
│ │ ├── cstdlib.hpp | |
│ │ ├── filebuf.hpp | |
│ │ ├── fstream.hpp | |
│ │ ├── integration | |
│ │ │ └── filesystem.hpp | |
│ │ ├── iostream.hpp | |
│ │ ├── stackstring.hpp | |
│ │ ├── system.hpp | |
│ │ ├── utf8_codecvt.hpp | |
│ │ └── windows.hpp | |
│ └── leatherman | |
│ ├── curl | |
│ │ ├── client.hpp | |
│ │ ├── export.h | |
│ │ ├── request.hpp | |
│ │ └── response.hpp | |
│ ├── dynamic_library | |
│ │ └── dynamic_library.hpp | |
│ ├── execution | |
│ │ └── execution.hpp | |
│ ├── file_util | |
│ │ ├── directory.hpp | |
│ │ └── file.hpp | |
│ ├── json_container | |
│ │ └── json_container.hpp | |
│ ├── locale | |
│ │ └── locale.hpp | |
│ ├── logging | |
│ │ └── logging.hpp | |
│ ├── ruby | |
│ │ └── api.hpp | |
│ ├── util | |
│ │ ├── environment.hpp | |
│ │ ├── option_set.hpp | |
│ │ ├── posix | |
│ │ │ └── scoped_descriptor.hpp | |
│ │ ├── regex.hpp | |
│ │ ├── scoped_env.hpp | |
│ │ ├── scoped_resource.hpp | |
│ │ ├── scope_exit.hpp | |
│ │ ├── strings.hpp | |
│ │ ├── time.hpp | |
│ │ ├── timer.hpp | |
│ │ ├── uri.hpp | |
│ │ └── windows | |
│ │ └── scoped_handle.hpp | |
│ └── vendor | |
│ ├── catch.hpp | |
│ └── rapidjson | |
│ ├── allocators.h | |
│ ├── document.h | |
│ ├── encodedstream.h | |
│ ├── encodings.h | |
│ ├── error | |
│ │ ├── en.h | |
│ │ └── error.h | |
│ ├── filereadstream.h | |
│ ├── filewritestream.h | |
│ ├── internal | |
│ │ ├── biginteger.h | |
│ │ ├── diyfp.h | |
│ │ ├── dtoa.h | |
│ │ ├── ieee754.h | |
│ │ ├── itoa.h | |
│ │ ├── meta.h | |
│ │ ├── pow10.h | |
│ │ ├── stack.h | |
│ │ ├── strfunc.h | |
│ │ └── strtod.h | |
│ ├── memorybuffer.h | |
│ ├── memorystream.h | |
│ ├── msinttypes | |
│ │ ├── inttypes.h | |
│ │ └── stdint.h | |
│ ├── prettywriter.h | |
│ ├── rapidjson.h | |
│ ├── reader.h | |
│ ├── stringbuffer.h | |
│ └── writer.h | |
└── lib | |
├── cmake | |
│ └── leatherman | |
│ ├── catch.cmake | |
│ ├── cmake | |
│ │ ├── cflags.cmake | |
│ │ ├── generate_translations.cmake | |
│ │ ├── GetGitRevisionDescription.cmake | |
│ │ ├── GetGitRevisionDescription.cmake.in | |
│ │ ├── leatherman.cmake | |
│ │ ├── leatherman_config.cmake | |
│ │ ├── normalize_pot.cmake | |
│ │ ├── options.cmake | |
│ │ └── pod2man.cmake | |
│ ├── curl.cmake | |
│ ├── dynamic_library.cmake | |
│ ├── execution.cmake | |
│ ├── file_util.cmake | |
│ ├── json_container.cmake | |
│ ├── LeathermanConfig.cmake | |
│ ├── LeathermanConfigVersion.cmake | |
│ ├── LeathermanLibraries.cmake | |
│ ├── LeathermanLibraries-release.cmake | |
│ ├── locale.cmake | |
│ ├── logging.cmake | |
│ ├── nowide.cmake | |
│ ├── rapidjson.cmake | |
│ ├── ruby.cmake | |
│ ├── scripts | |
│ │ └── cpplint.py | |
│ └── util.cmake | |
├── leatherman_curl.a | |
├── leatherman_dynamic_library.a | |
├── leatherman_execution.a | |
├── leatherman_file_util.a | |
├── leatherman_json_container.a | |
├── leatherman_locale.a | |
├── leatherman_logging.a | |
├── leatherman_ruby.a | |
└── leatherman_util.a | |
26 directories, 101 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment