├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── ChangeLog ├── LICENSE ├── Makefile ├── Makefile.toml ├── README.md ├── fixtures ├── cache.mp ├── dir1 │ ├── .gitignore │ ├── duplicated │ ├── notignored │ ├── proto-http.la │ ├── script.zip │ ├── six.py │ └── tooshort ├── dir2 │ ├── ignored │ ├── lftp │ ├── lftp.offset │ └── link └── miniegg-1-py3.5.egg ├── src ├── cachemap.rs ├── errors.rs ├── main.rs ├── output.rs ├── registry.rs ├── scan.rs ├── statistics.rs ├── storepaths │ ├── cache.rs │ └── mod.rs ├── system.rs ├── tests │ └── mod.rs └── walk.rs └── userscan.1.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/Cargo.toml -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/Makefile.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/cache.mp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/cache.mp -------------------------------------------------------------------------------- /fixtures/dir1/.gitignore: -------------------------------------------------------------------------------- 1 | notignored 2 | -------------------------------------------------------------------------------- /fixtures/dir1/duplicated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir1/duplicated -------------------------------------------------------------------------------- /fixtures/dir1/notignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir1/notignored -------------------------------------------------------------------------------- /fixtures/dir1/proto-http.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir1/proto-http.la -------------------------------------------------------------------------------- /fixtures/dir1/script.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir1/script.zip -------------------------------------------------------------------------------- /fixtures/dir1/six.py: -------------------------------------------------------------------------------- 1 | /nix/store/1b4i3gm31j1ipfbx1v9a3hhgmp2wvyyw-python2.7-six-1.9.0/lib/python2.7/site-packages/six.py -------------------------------------------------------------------------------- /fixtures/dir1/tooshort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir1/tooshort -------------------------------------------------------------------------------- /fixtures/dir2/ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir2/ignored -------------------------------------------------------------------------------- /fixtures/dir2/lftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir2/lftp -------------------------------------------------------------------------------- /fixtures/dir2/lftp.offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/dir2/lftp.offset -------------------------------------------------------------------------------- /fixtures/dir2/link: -------------------------------------------------------------------------------- 1 | lkjlkjlkjlkj -------------------------------------------------------------------------------- /fixtures/miniegg-1-py3.5.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/fixtures/miniegg-1-py3.5.egg -------------------------------------------------------------------------------- /src/cachemap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/cachemap.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/output.rs -------------------------------------------------------------------------------- /src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/registry.rs -------------------------------------------------------------------------------- /src/scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/scan.rs -------------------------------------------------------------------------------- /src/statistics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/statistics.rs -------------------------------------------------------------------------------- /src/storepaths/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/storepaths/cache.rs -------------------------------------------------------------------------------- /src/storepaths/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/storepaths/mod.rs -------------------------------------------------------------------------------- /src/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/system.rs -------------------------------------------------------------------------------- /src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/tests/mod.rs -------------------------------------------------------------------------------- /src/walk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/src/walk.rs -------------------------------------------------------------------------------- /userscan.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingcircusio/userscan/HEAD/userscan.1.rst --------------------------------------------------------------------------------