@mbe24/99problems 0.2.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/.github/ISSUE_TEMPLATE/01-feature.yml +65 -0
  2. package/.github/ISSUE_TEMPLATE/02-bug.yml +122 -0
  3. package/.github/ISSUE_TEMPLATE/99-custom.yml +33 -0
  4. package/.github/ISSUE_TEMPLATE/config.yml +1 -0
  5. package/.github/dependabot.yml +20 -0
  6. package/.github/scripts/publish.js +1 -1
  7. package/.github/workflows/ci.yml +32 -6
  8. package/.github/workflows/man-drift.yml +26 -0
  9. package/.github/workflows/release.yml +49 -9
  10. package/CONTRIBUTING.md +38 -50
  11. package/Cargo.lock +151 -108
  12. package/Cargo.toml +8 -3
  13. package/README.md +107 -85
  14. package/artifacts/binary-aarch64-apple-darwin/99problems +0 -0
  15. package/artifacts/binary-aarch64-unknown-linux-gnu/99problems +0 -0
  16. package/artifacts/binary-x86_64-apple-darwin/99problems +0 -0
  17. package/artifacts/binary-x86_64-pc-windows-msvc/99problems.exe +0 -0
  18. package/artifacts/binary-x86_64-unknown-linux-gnu/99problems +0 -0
  19. package/docs/man/99problems-completions.1 +31 -0
  20. package/docs/man/99problems-config.1 +50 -0
  21. package/docs/man/99problems-get.1 +114 -0
  22. package/docs/man/99problems-help.1 +25 -0
  23. package/docs/man/99problems-man.1 +32 -0
  24. package/docs/man/99problems.1 +52 -0
  25. package/npm/install.js +90 -3
  26. package/package.json +7 -7
  27. package/rust-toolchain.toml +4 -0
  28. package/src/cmd/config/key.rs +126 -0
  29. package/src/cmd/config/mod.rs +218 -0
  30. package/src/cmd/config/render.rs +33 -0
  31. package/src/cmd/config/store.rs +318 -0
  32. package/src/cmd/config/write.rs +173 -0
  33. package/src/cmd/get.rs +658 -0
  34. package/src/cmd/man.rs +117 -0
  35. package/src/cmd/mod.rs +3 -0
  36. package/src/config.rs +618 -118
  37. package/src/error.rs +254 -0
  38. package/src/format/json.rs +59 -18
  39. package/src/format/jsonl.rs +52 -0
  40. package/src/format/mod.rs +25 -3
  41. package/src/format/text.rs +73 -0
  42. package/src/format/yaml.rs +64 -15
  43. package/src/lib.rs +1 -0
  44. package/src/logging.rs +54 -0
  45. package/src/main.rs +225 -138
  46. package/src/model.rs +9 -1
  47. package/src/source/bitbucket/cloud/api.rs +67 -0
  48. package/src/source/bitbucket/cloud/mod.rs +178 -0
  49. package/src/source/bitbucket/cloud/model.rs +211 -0
  50. package/src/source/bitbucket/datacenter/api.rs +74 -0
  51. package/src/source/bitbucket/datacenter/mod.rs +181 -0
  52. package/src/source/bitbucket/datacenter/model.rs +327 -0
  53. package/src/source/bitbucket/mod.rs +90 -0
  54. package/src/source/bitbucket/query.rs +169 -0
  55. package/src/source/bitbucket/shared/auth.rs +54 -0
  56. package/src/source/bitbucket/shared/http.rs +59 -0
  57. package/src/source/bitbucket/shared/mod.rs +5 -0
  58. package/src/source/github/api.rs +128 -0
  59. package/src/source/github/mod.rs +191 -0
  60. package/src/source/github/model.rs +84 -0
  61. package/src/source/github/query.rs +50 -0
  62. package/src/source/gitlab/api.rs +282 -0
  63. package/src/source/gitlab/mod.rs +225 -0
  64. package/src/source/gitlab/model.rs +102 -0
  65. package/src/source/gitlab/query.rs +177 -0
  66. package/src/source/jira/api.rs +222 -0
  67. package/src/source/jira/mod.rs +161 -0
  68. package/src/source/jira/model.rs +99 -0
  69. package/src/source/jira/query.rs +153 -0
  70. package/src/source/mod.rs +65 -7
  71. package/tests/integration.rs +404 -33
  72. package/src/source/github_issues.rs +0 -227
package/Cargo.lock CHANGED
@@ -132,6 +132,15 @@ dependencies = [
132
132
  "strsim",
133
133
  ]
134
134
 
135
+ [[package]]
136
+ name = "clap_complete"
137
+ version = "4.5.66"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "c757a3b7e39161a4e56f9365141ada2a6c915a8622c408ab6bb4b5d047371031"
140
+ dependencies = [
141
+ "clap",
142
+ ]
143
+
135
144
  [[package]]
136
145
  name = "clap_derive"
137
146
  version = "4.5.55"
@@ -150,6 +159,16 @@ version = "1.0.0"
150
159
  source = "registry+https://github.com/rust-lang/crates.io-index"
151
160
  checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
152
161
 
162
+ [[package]]
163
+ name = "clap_mangen"
164
+ version = "0.2.31"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "439ea63a92086df93893164221ad4f24142086d535b3a0957b9b9bea2dc86301"
167
+ dependencies = [
168
+ "clap",
169
+ "roff",
170
+ ]
171
+
153
172
  [[package]]
154
173
  name = "colorchoice"
155
174
  version = "1.0.4"
@@ -158,23 +177,23 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
158
177
 
159
178
  [[package]]
160
179
  name = "dirs"
161
- version = "5.0.1"
180
+ version = "6.0.0"
162
181
  source = "registry+https://github.com/rust-lang/crates.io-index"
163
- checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
182
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
164
183
  dependencies = [
165
184
  "dirs-sys",
166
185
  ]
167
186
 
168
187
  [[package]]
169
188
  name = "dirs-sys"
170
- version = "0.4.1"
189
+ version = "0.5.0"
171
190
  source = "registry+https://github.com/rust-lang/crates.io-index"
172
- checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
191
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
173
192
  dependencies = [
174
193
  "libc",
175
194
  "option-ext",
176
195
  "redox_users",
177
- "windows-sys 0.48.0",
196
+ "windows-sys 0.61.2",
178
197
  ]
179
198
 
180
199
  [[package]]
@@ -547,6 +566,12 @@ dependencies = [
547
566
  "wasm-bindgen",
548
567
  ]
549
568
 
569
+ [[package]]
570
+ name = "lazy_static"
571
+ version = "1.5.0"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
574
+
550
575
  [[package]]
551
576
  name = "libc"
552
577
  version = "0.2.182"
@@ -597,6 +622,15 @@ dependencies = [
597
622
  "windows-sys 0.61.2",
598
623
  ]
599
624
 
625
+ [[package]]
626
+ name = "nu-ansi-term"
627
+ version = "0.50.3"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
630
+ dependencies = [
631
+ "windows-sys 0.61.2",
632
+ ]
633
+
600
634
  [[package]]
601
635
  name = "once_cell"
602
636
  version = "1.21.3"
@@ -653,16 +687,21 @@ dependencies = [
653
687
 
654
688
  [[package]]
655
689
  name = "problems99"
656
- version = "0.2.0"
690
+ version = "0.3.1"
657
691
  dependencies = [
658
692
  "anyhow",
659
693
  "clap",
694
+ "clap_complete",
695
+ "clap_mangen",
660
696
  "dirs",
661
697
  "reqwest",
662
698
  "serde",
663
699
  "serde_json",
664
700
  "serde_yaml",
665
701
  "toml",
702
+ "toml_edit",
703
+ "tracing",
704
+ "tracing-subscriber",
666
705
  ]
667
706
 
668
707
  [[package]]
@@ -688,7 +727,7 @@ dependencies = [
688
727
  "rustc-hash",
689
728
  "rustls",
690
729
  "socket2",
691
- "thiserror 2.0.18",
730
+ "thiserror",
692
731
  "tokio",
693
732
  "tracing",
694
733
  "web-time",
@@ -709,7 +748,7 @@ dependencies = [
709
748
  "rustls",
710
749
  "rustls-pki-types",
711
750
  "slab",
712
- "thiserror 2.0.18",
751
+ "thiserror",
713
752
  "tinyvec",
714
753
  "tracing",
715
754
  "web-time",
@@ -726,7 +765,7 @@ dependencies = [
726
765
  "once_cell",
727
766
  "socket2",
728
767
  "tracing",
729
- "windows-sys 0.52.0",
768
+ "windows-sys 0.60.2",
730
769
  ]
731
770
 
732
771
  [[package]]
@@ -775,13 +814,13 @@ dependencies = [
775
814
 
776
815
  [[package]]
777
816
  name = "redox_users"
778
- version = "0.4.6"
817
+ version = "0.5.2"
779
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
780
- checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
819
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
781
820
  dependencies = [
782
821
  "getrandom 0.2.17",
783
822
  "libredox",
784
- "thiserror 1.0.69",
823
+ "thiserror",
785
824
  ]
786
825
 
787
826
  [[package]]
@@ -838,6 +877,12 @@ dependencies = [
838
877
  "windows-sys 0.52.0",
839
878
  ]
840
879
 
880
+ [[package]]
881
+ name = "roff"
882
+ version = "0.2.2"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
885
+
841
886
  [[package]]
842
887
  name = "rustc-hash"
843
888
  version = "2.1.1"
@@ -936,11 +981,11 @@ dependencies = [
936
981
 
937
982
  [[package]]
938
983
  name = "serde_spanned"
939
- version = "0.6.9"
984
+ version = "1.0.4"
940
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
941
- checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
986
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
942
987
  dependencies = [
943
- "serde",
988
+ "serde_core",
944
989
  ]
945
990
 
946
991
  [[package]]
@@ -968,6 +1013,15 @@ dependencies = [
968
1013
  "unsafe-libyaml",
969
1014
  ]
970
1015
 
1016
+ [[package]]
1017
+ name = "sharded-slab"
1018
+ version = "0.1.7"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1021
+ dependencies = [
1022
+ "lazy_static",
1023
+ ]
1024
+
971
1025
  [[package]]
972
1026
  name = "shlex"
973
1027
  version = "1.3.0"
@@ -1045,29 +1099,20 @@ dependencies = [
1045
1099
  "syn",
1046
1100
  ]
1047
1101
 
1048
- [[package]]
1049
- name = "thiserror"
1050
- version = "1.0.69"
1051
- source = "registry+https://github.com/rust-lang/crates.io-index"
1052
- checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1053
- dependencies = [
1054
- "thiserror-impl 1.0.69",
1055
- ]
1056
-
1057
1102
  [[package]]
1058
1103
  name = "thiserror"
1059
1104
  version = "2.0.18"
1060
1105
  source = "registry+https://github.com/rust-lang/crates.io-index"
1061
1106
  checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1062
1107
  dependencies = [
1063
- "thiserror-impl 2.0.18",
1108
+ "thiserror-impl",
1064
1109
  ]
1065
1110
 
1066
1111
  [[package]]
1067
1112
  name = "thiserror-impl"
1068
- version = "1.0.69"
1113
+ version = "2.0.18"
1069
1114
  source = "registry+https://github.com/rust-lang/crates.io-index"
1070
- checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1115
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1071
1116
  dependencies = [
1072
1117
  "proc-macro2",
1073
1118
  "quote",
@@ -1075,14 +1120,12 @@ dependencies = [
1075
1120
  ]
1076
1121
 
1077
1122
  [[package]]
1078
- name = "thiserror-impl"
1079
- version = "2.0.18"
1123
+ name = "thread_local"
1124
+ version = "1.1.9"
1080
1125
  source = "registry+https://github.com/rust-lang/crates.io-index"
1081
- checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1126
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1082
1127
  dependencies = [
1083
- "proc-macro2",
1084
- "quote",
1085
- "syn",
1128
+ "cfg-if",
1086
1129
  ]
1087
1130
 
1088
1131
  [[package]]
@@ -1136,14 +1179,17 @@ dependencies = [
1136
1179
 
1137
1180
  [[package]]
1138
1181
  name = "toml"
1139
- version = "0.8.23"
1182
+ version = "1.0.4+spec-1.1.0"
1140
1183
  source = "registry+https://github.com/rust-lang/crates.io-index"
1141
- checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1184
+ checksum = "c94c3321114413476740df133f0d8862c61d87c8d26f04c6841e033c8c80db47"
1142
1185
  dependencies = [
1143
- "serde",
1186
+ "indexmap",
1187
+ "serde_core",
1144
1188
  "serde_spanned",
1145
- "toml_datetime",
1146
- "toml_edit",
1189
+ "toml_datetime 1.0.0+spec-1.1.0",
1190
+ "toml_parser",
1191
+ "toml_writer",
1192
+ "winnow",
1147
1193
  ]
1148
1194
 
1149
1195
  [[package]]
@@ -1151,8 +1197,14 @@ name = "toml_datetime"
1151
1197
  version = "0.6.11"
1152
1198
  source = "registry+https://github.com/rust-lang/crates.io-index"
1153
1199
  checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1200
+
1201
+ [[package]]
1202
+ name = "toml_datetime"
1203
+ version = "1.0.0+spec-1.1.0"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e"
1154
1206
  dependencies = [
1155
- "serde",
1207
+ "serde_core",
1156
1208
  ]
1157
1209
 
1158
1210
  [[package]]
@@ -1162,19 +1214,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
1214
  checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1163
1215
  dependencies = [
1164
1216
  "indexmap",
1165
- "serde",
1166
- "serde_spanned",
1167
- "toml_datetime",
1217
+ "toml_datetime 0.6.11",
1168
1218
  "toml_write",
1169
1219
  "winnow",
1170
1220
  ]
1171
1221
 
1222
+ [[package]]
1223
+ name = "toml_parser"
1224
+ version = "1.0.9+spec-1.1.0"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
1227
+ dependencies = [
1228
+ "winnow",
1229
+ ]
1230
+
1172
1231
  [[package]]
1173
1232
  name = "toml_write"
1174
1233
  version = "0.1.2"
1175
1234
  source = "registry+https://github.com/rust-lang/crates.io-index"
1176
1235
  checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1177
1236
 
1237
+ [[package]]
1238
+ name = "toml_writer"
1239
+ version = "1.0.6+spec-1.1.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
1242
+
1178
1243
  [[package]]
1179
1244
  name = "tower"
1180
1245
  version = "0.5.3"
@@ -1227,9 +1292,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
1292
  checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1228
1293
  dependencies = [
1229
1294
  "pin-project-lite",
1295
+ "tracing-attributes",
1230
1296
  "tracing-core",
1231
1297
  ]
1232
1298
 
1299
+ [[package]]
1300
+ name = "tracing-attributes"
1301
+ version = "0.1.31"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1304
+ dependencies = [
1305
+ "proc-macro2",
1306
+ "quote",
1307
+ "syn",
1308
+ ]
1309
+
1233
1310
  [[package]]
1234
1311
  name = "tracing-core"
1235
1312
  version = "0.1.36"
@@ -1237,6 +1314,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
1314
  checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1238
1315
  dependencies = [
1239
1316
  "once_cell",
1317
+ "valuable",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "tracing-log"
1322
+ version = "0.2.0"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1325
+ dependencies = [
1326
+ "log",
1327
+ "once_cell",
1328
+ "tracing-core",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "tracing-subscriber"
1333
+ version = "0.3.22"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1336
+ dependencies = [
1337
+ "nu-ansi-term",
1338
+ "sharded-slab",
1339
+ "smallvec",
1340
+ "thread_local",
1341
+ "tracing-core",
1342
+ "tracing-log",
1240
1343
  ]
1241
1344
 
1242
1345
  [[package]]
@@ -1287,6 +1390,12 @@ version = "0.2.2"
1287
1390
  source = "registry+https://github.com/rust-lang/crates.io-index"
1288
1391
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1289
1392
 
1393
+ [[package]]
1394
+ name = "valuable"
1395
+ version = "0.1.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1398
+
1290
1399
  [[package]]
1291
1400
  name = "want"
1292
1401
  version = "0.3.1"
@@ -1405,15 +1514,6 @@ version = "0.2.1"
1405
1514
  source = "registry+https://github.com/rust-lang/crates.io-index"
1406
1515
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1407
1516
 
1408
- [[package]]
1409
- name = "windows-sys"
1410
- version = "0.48.0"
1411
- source = "registry+https://github.com/rust-lang/crates.io-index"
1412
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1413
- dependencies = [
1414
- "windows-targets 0.48.5",
1415
- ]
1416
-
1417
1517
  [[package]]
1418
1518
  name = "windows-sys"
1419
1519
  version = "0.52.0"
@@ -1441,21 +1541,6 @@ dependencies = [
1441
1541
  "windows-link",
1442
1542
  ]
1443
1543
 
1444
- [[package]]
1445
- name = "windows-targets"
1446
- version = "0.48.5"
1447
- source = "registry+https://github.com/rust-lang/crates.io-index"
1448
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1449
- dependencies = [
1450
- "windows_aarch64_gnullvm 0.48.5",
1451
- "windows_aarch64_msvc 0.48.5",
1452
- "windows_i686_gnu 0.48.5",
1453
- "windows_i686_msvc 0.48.5",
1454
- "windows_x86_64_gnu 0.48.5",
1455
- "windows_x86_64_gnullvm 0.48.5",
1456
- "windows_x86_64_msvc 0.48.5",
1457
- ]
1458
-
1459
1544
  [[package]]
1460
1545
  name = "windows-targets"
1461
1546
  version = "0.52.6"
@@ -1489,12 +1574,6 @@ dependencies = [
1489
1574
  "windows_x86_64_msvc 0.53.1",
1490
1575
  ]
1491
1576
 
1492
- [[package]]
1493
- name = "windows_aarch64_gnullvm"
1494
- version = "0.48.5"
1495
- source = "registry+https://github.com/rust-lang/crates.io-index"
1496
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1497
-
1498
1577
  [[package]]
1499
1578
  name = "windows_aarch64_gnullvm"
1500
1579
  version = "0.52.6"
@@ -1507,12 +1586,6 @@ version = "0.53.1"
1507
1586
  source = "registry+https://github.com/rust-lang/crates.io-index"
1508
1587
  checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1509
1588
 
1510
- [[package]]
1511
- name = "windows_aarch64_msvc"
1512
- version = "0.48.5"
1513
- source = "registry+https://github.com/rust-lang/crates.io-index"
1514
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1515
-
1516
1589
  [[package]]
1517
1590
  name = "windows_aarch64_msvc"
1518
1591
  version = "0.52.6"
@@ -1525,12 +1598,6 @@ version = "0.53.1"
1525
1598
  source = "registry+https://github.com/rust-lang/crates.io-index"
1526
1599
  checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1527
1600
 
1528
- [[package]]
1529
- name = "windows_i686_gnu"
1530
- version = "0.48.5"
1531
- source = "registry+https://github.com/rust-lang/crates.io-index"
1532
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1533
-
1534
1601
  [[package]]
1535
1602
  name = "windows_i686_gnu"
1536
1603
  version = "0.52.6"
@@ -1555,12 +1622,6 @@ version = "0.53.1"
1555
1622
  source = "registry+https://github.com/rust-lang/crates.io-index"
1556
1623
  checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1557
1624
 
1558
- [[package]]
1559
- name = "windows_i686_msvc"
1560
- version = "0.48.5"
1561
- source = "registry+https://github.com/rust-lang/crates.io-index"
1562
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1563
-
1564
1625
  [[package]]
1565
1626
  name = "windows_i686_msvc"
1566
1627
  version = "0.52.6"
@@ -1573,12 +1634,6 @@ version = "0.53.1"
1573
1634
  source = "registry+https://github.com/rust-lang/crates.io-index"
1574
1635
  checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1575
1636
 
1576
- [[package]]
1577
- name = "windows_x86_64_gnu"
1578
- version = "0.48.5"
1579
- source = "registry+https://github.com/rust-lang/crates.io-index"
1580
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1581
-
1582
1637
  [[package]]
1583
1638
  name = "windows_x86_64_gnu"
1584
1639
  version = "0.52.6"
@@ -1591,12 +1646,6 @@ version = "0.53.1"
1591
1646
  source = "registry+https://github.com/rust-lang/crates.io-index"
1592
1647
  checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1593
1648
 
1594
- [[package]]
1595
- name = "windows_x86_64_gnullvm"
1596
- version = "0.48.5"
1597
- source = "registry+https://github.com/rust-lang/crates.io-index"
1598
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1599
-
1600
1649
  [[package]]
1601
1650
  name = "windows_x86_64_gnullvm"
1602
1651
  version = "0.52.6"
@@ -1609,12 +1658,6 @@ version = "0.53.1"
1609
1658
  source = "registry+https://github.com/rust-lang/crates.io-index"
1610
1659
  checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1611
1660
 
1612
- [[package]]
1613
- name = "windows_x86_64_msvc"
1614
- version = "0.48.5"
1615
- source = "registry+https://github.com/rust-lang/crates.io-index"
1616
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1617
-
1618
1661
  [[package]]
1619
1662
  name = "windows_x86_64_msvc"
1620
1663
  version = "0.52.6"
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "problems99"
3
- version = "0.2.0"
3
+ version = "0.3.1"
4
4
  edition = "2024"
5
5
  description = "GitHub issue conversation fetcher CLI"
6
6
  license = "Apache-2.0"
@@ -16,12 +16,17 @@ path = "src/lib.rs"
16
16
  [dependencies]
17
17
  anyhow = "1"
18
18
  clap = { version = "4", features = ["derive"] }
19
- dirs = "5"
19
+ clap_complete = "4"
20
+ clap_mangen = "0.2"
21
+ dirs = "6.0.0"
20
22
  reqwest = { version = "0.12", features = ["blocking", "json", "rustls-tls"], default-features = false }
21
23
  serde = { version = "1", features = ["derive"] }
22
24
  serde_json = "1"
23
25
  serde_yaml = "0.9"
24
- toml = "0.8"
26
+ toml = "1.0.3"
27
+ toml_edit = "0.22"
28
+ tracing = "0.1"
29
+ tracing-subscriber = { version = "0.3", features = ["fmt"] }
25
30
 
26
31
  [dev-dependencies]
27
32
  serde_json = "1"