command line pdf tools [unmaintained]
0

Configure Feed

Select the types of activity you want to include in your feed.

initial commit

author
Owais Jamil
date (Dec 9, 2025, 8:33 PM -0600) commit 195afda7
+68
+21
.gitignore
··· 1 + # Generated by Cargo 2 + # will have compiled files and executables 3 + debug 4 + target 5 + 6 + # These are backup files generated by rustfmt 7 + **/*.rs.bk 8 + 9 + # MSVC Windows builds of rustc generate these, which store debugging information 10 + *.pdb 11 + 12 + # Generated by cargo mutants 13 + # Contains mutation testing data 14 + **/mutants.out*/ 15 + 16 + # RustRover 17 + # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 18 + # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 19 + # and can be added to the global gitignore or merged into this file. For a more nuclear 20 + # option (not recommended) you can uncomment the following to ignore the entire idea folder. 21 + #.idea/
+38
Cargo.toml
··· 1 + [workspace] 2 + resolver = "2" 3 + members = [] 4 + 5 + [workspace.lints.clippy] 6 + bool_comparison = "deny" 7 + duplicate_mod = "deny" 8 + inconsistent_struct_constructor = "deny" 9 + invalid_regex = "deny" 10 + mem_forget = "deny" 11 + mixed_case_hex_literals = "deny" 12 + suspicious_arithmetic_impl = "deny" 13 + uninit_assumed_init = "deny" 14 + suspicious_else_formatting = "deny" 15 + suspicious_op_assign_impl = "deny" 16 + suspicious_to_owned = "deny" 17 + cmp_owned = "deny" 18 + cmp_null = "deny" 19 + manual_map = "deny" 20 + 21 + too_many_arguments = "warn" 22 + cognitive_complexity = "warn" 23 + large_enum_variant = "warn" 24 + needless_borrow = "warn" 25 + needless_pass_by_value = "warn" 26 + redundant_clone = "warn" 27 + unnecessary_cast = "warn" 28 + inefficient_to_string = "warn" 29 + or_fun_call = "warn" 30 + unnecessary_to_owned = "warn" 31 + map_clone = "warn" 32 + flat_map_identity = "warn" 33 + needless_collect = "warn" 34 + vec_init_then_push = "warn" 35 + 36 + len_zero = "allow" 37 + range_plus_one = "allow" 38 + manual_range_contains = "allow"
+3
README.md
··· 1 + # picopdf 2 + 3 + Command-line PDF tools
+6
rustfmt.toml
··· 1 + max_width = 120 2 + fn_params_layout = "Compressed" 3 + single_line_if_else_max_width = 100 4 + single_line_let_else_max_width = 100 5 + use_field_init_shorthand = true 6 + struct_lit_width = 100