0d034a5c4b
minor logging changes
...
logs use abbreviated level names:
[D] example
instead of
[DEBUG] example
also, you can now use FIF_LOG instead of RUST_LOG
2021-07-01 18:52:53 +10:00
3b731a7c61
added --canonical-paths flag
...
Findings now takes a PathBuf instead of a reference to a Path but there's no noticeable performance change
2021-06-18 15:17:30 +10:00
0278fe252e
kode kleanup
2021-06-14 17:08:52 +10:00
6934dd0b5e
move some commonly used constants into a single module
2021-06-14 17:07:38 +10:00
f8dcdf8a3c
nicer output for fif -V
and fif --version
2021-06-14 16:29:41 +10:00
8341c4aaf7
rename dirs
parameter to dir
2021-05-09 00:23:03 +10:00
81347a7658
mime_extension_lookup takes essence_str directly, videos aliases to video
continuous-integration/drone/push Build is passing
2021-05-08 00:32:44 +10:00
b93e111357
added JSON output
2021-05-06 08:57:42 +10:00
beebbbbb3b
replace fastrand dep with rand, rustfmt
2021-04-29 17:08:56 +10:00
a60a19191a
reject lowercase exts bc they don't worky
2021-04-29 17:03:26 +10:00
4acbcaaa9b
added quietness flag, set default log level to info
2021-04-28 22:20:10 +10:00
a05af12352
fif now outputs the dir it was run from
...
- refactor Format function signatures to be more uniform
- add Shell and Bash aliases for Sh
2021-04-28 21:27:06 +10:00
cb6e111f16
more comprehensive ext sets, link text/xml and application/xml, remove silly Powershell/PowerShell hack
2021-04-28 19:33:42 +10:00
4f5914ed75
-E and -X can now take multiple sets
2021-04-28 18:10:34 +10:00
d5d58e1830
-e and -E can now be used together!
...
also changelog rewording
-e and -E can now be used together!
2021-04-28 17:17:38 +10:00
af3d51fcda
cleaned up excluded_extensions
2021-04-28 17:12:34 +10:00
d578efa7a4
rename videos set to video, multiple exts can be specified with multiple -e
flags
2021-04-28 16:44:29 +10:00
22f1f280d7
added -X
for excluding sets of extensions. -X
is to -E
as -x
is to -e
.
2021-04-28 16:16:32 +10:00
b12c42adbb
publish my fork of mime_guess so it can be used w/ crates.io
...
crates.io doesn't allow you to use path or git dependencies - you can only depend on published crates. i didn't really want to publish my mime_guess fork, since i don't really see anyone besides myself using it (and i don't really want my fork to "dethrone" the original or whatever), but unless i want `cargo install fif` to give you a version of fif that tells you XML files should have the extension ".asa", i kind of have to do this :c
2021-04-28 15:17:40 +10:00
fc51f8128a
rustfmt
2021-04-27 20:26:01 +10:00
7e3efbed5c
added exclude flag for excluding extensions
continuous-integration/drone/push Build is passing
2021-04-27 20:25:41 +10:00
40bdac274f
minor cleanup
2021-04-26 22:32:43 +10:00
889b2e2316
move ExtensionSet stuff into parameters.rs
2021-04-26 22:17:57 +10:00
2ceafb7acf
added -v/--verbose
2021-04-26 22:15:14 +10:00
be37b24705
better documentation for parameters, renamed Script to Sh
2021-04-07 01:47:40 +10:00
fb67c11eb6
add option for following symlinks, make extensions optional, new version!!
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2021-04-04 23:52:16 +10:00
25c9efa2f1
fixed compilation on some obscurish architectures (e.g. powerpc), more clippy lints
2021-04-03 03:52:28 +10:00
129aa83ade
lots of stuff! and a version bump!! 0u0
...
continuous-integration/drone/tag Build is passing
- extension_from_path now returns Option<&OsStr>
- two new tests
- Findings uses a Path instead of a PathBuf, reducing allocations
- some unnecessary stuff removed, thanks clippy
- that is all
2021-03-26 04:46:07 +10:00
40a90308a5
initial (and somewhat bonked) powershell support, cargo update
2021-03-26 00:28:03 +10:00
87dab7284f
test on alpine, clippy & rustfmt
continuous-integration/drone/push Build is failing
2021-03-12 03:44:31 +10:00
8a152d4118
new option for scanning extensionless files, nicer #[cfg]s, -s no longer skips hidden root dir...
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2021-03-03 01:12:29 +10:00
4412161193
nicer output for --help
continuous-integration/drone/push Build is passing
2021-03-01 20:20:46 +10:00
5907309689
renamed modules in accordance with https://rust-lang.github.io/api-guidelines/naming.html
2021-03-01 19:21:00 +10:00
32da919f81
replace (ScanError, PathBuf) with just ScanError (which now contains a PathBuf)
2021-03-01 19:18:20 +10:00
1aa355e753
version bump - wrote docs, logging by default, and more
2021-03-01 01:23:52 +10:00
31aaa80701
documentation!!! ≥50% coverage!!! wow!!!!!
2021-03-01 00:06:05 +10:00
67fb03821d
integration test for arg parsing, minor shuffling around of things
continuous-integration/drone/push Build is passing
2021-02-28 22:17:26 +10:00
db94465bb7
better document support, print version properly, display version
2021-02-22 08:46:17 +10:00
9091850ec5
thanks rustfmt
2021-02-22 00:15:09 +10:00
df2f924b2f
added some extension sets, replaced 'echo' with 'printf' in shell output
2021-02-18 21:43:24 +10:00
d7eb0de299
nicer formatting, moved Findings into its own file
2021-02-15 03:12:27 +10:00
3642f0112a
version bump, minor cleanup, cli parse fix
...
previously, `fif -e rs src` would be interpreted as "scan for files with extensions 'rs' and 'src' in the default directory" instead of "scan for files with extension 'rs' in 'src'" - this has been fixed
2021-02-15 02:20:48 +10:00
82bdbebec5
rudimentary script output, lots of small stuff, performance improvements
2021-02-10 19:20:22 +10:00
6d49336e6b
more gooder output
2021-02-06 13:24:13 +10:00
775fb306ad
switched from structopt to clap 3
2021-02-05 19:24:08 +10:00
1a32c6c2f0
initial commit
2021-02-04 21:22:19 +10:00