├── .github ├── dependabot.yml └── workflows │ └── CI.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── errors.rs ├── ld_so_conf.rs ├── lib.rs └── main.rs └── tests ├── ld.so.conf ├── ld.so.conf.d ├── fakeroot-x86_64-linux-gnu.conf ├── libc.conf ├── x86_64-linux-gnu.conf └── zz_i386-biarch-compat.conf ├── test.elf ├── test_lddtree.rs └── test_parse_ldsoconf.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/ld_so_conf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/src/ld_so_conf.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/ld.so.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/tests/ld.so.conf -------------------------------------------------------------------------------- /tests/ld.so.conf.d/fakeroot-x86_64-linux-gnu.conf: -------------------------------------------------------------------------------- 1 | /usr/lib/x86_64-linux-gnu/libfakeroot 2 | -------------------------------------------------------------------------------- /tests/ld.so.conf.d/libc.conf: -------------------------------------------------------------------------------- 1 | # libc default configuration 2 | /usr/local/lib 3 | -------------------------------------------------------------------------------- /tests/ld.so.conf.d/x86_64-linux-gnu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/tests/ld.so.conf.d/x86_64-linux-gnu.conf -------------------------------------------------------------------------------- /tests/ld.so.conf.d/zz_i386-biarch-compat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/tests/ld.so.conf.d/zz_i386-biarch-compat.conf -------------------------------------------------------------------------------- /tests/test.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/tests/test.elf -------------------------------------------------------------------------------- /tests/test_lddtree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/tests/test_lddtree.rs -------------------------------------------------------------------------------- /tests/test_parse_ldsoconf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/lddtree-rs/HEAD/tests/test_parse_ldsoconf.rs --------------------------------------------------------------------------------