typos 1.36.3__tar.gz → 1.37.0__tar.gz

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.

Potentially problematic release.


This version of typos might be problematic. Click here for more details.

Files changed (53) hide show
  1. {typos-1.36.3 → typos-1.37.0}/Cargo.lock +8 -8
  2. {typos-1.36.3 → typos-1.37.0}/PKG-INFO +1 -1
  3. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/Cargo.toml +2 -2
  4. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/lib.rs +1 -1
  5. {typos-1.36.3 → typos-1.37.0}/crates/typos/Cargo.toml +2 -2
  6. {typos-1.36.3 → typos-1.37.0}/crates/typos/src/lib.rs +1 -1
  7. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/Cargo.toml +3 -3
  8. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/lib.rs +1 -1
  9. {typos-1.36.3 → typos-1.37.0}/crates/typos-dict/Cargo.toml +2 -2
  10. {typos-1.36.3 → typos-1.37.0}/crates/typos-dict/src/lib.rs +1 -1
  11. {typos-1.36.3 → typos-1.37.0}/crates/typos-dict/src/word_codegen.rs +171446 -119031
  12. {typos-1.36.3 → typos-1.37.0}/crates/typos-vars/Cargo.toml +2 -2
  13. {typos-1.36.3 → typos-1.37.0}/crates/typos-vars/src/lib.rs +1 -1
  14. {typos-1.36.3 → typos-1.37.0}/crates/varcon/Cargo.toml +2 -2
  15. {typos-1.36.3 → typos-1.37.0}/crates/varcon/src/lib.rs +1 -1
  16. {typos-1.36.3 → typos-1.37.0}/crates/varcon-core/Cargo.toml +2 -2
  17. {typos-1.36.3 → typos-1.37.0}/crates/varcon-core/src/lib.rs +1 -1
  18. {typos-1.36.3 → typos-1.37.0}/Cargo.toml +0 -0
  19. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/aho_corasick.rs +0 -0
  20. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/gen.rs +0 -0
  21. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/insensitive.rs +0 -0
  22. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/map.rs +0 -0
  23. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/match.rs +0 -0
  24. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/ordered_map.rs +0 -0
  25. {typos-1.36.3 → typos-1.37.0}/crates/dictgen/src/trie.rs +0 -0
  26. {typos-1.36.3 → typos-1.37.0}/crates/typos/README.md +0 -0
  27. {typos-1.36.3 → typos-1.37.0}/crates/typos/src/check.rs +0 -0
  28. {typos-1.36.3 → typos-1.37.0}/crates/typos/src/dict.rs +0 -0
  29. {typos-1.36.3 → typos-1.37.0}/crates/typos/src/tokens.rs +0 -0
  30. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/README.md +0 -0
  31. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/bin/typos-cli/args.rs +0 -0
  32. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/bin/typos-cli/main.rs +0 -0
  33. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/bin/typos-cli/report.rs +0 -0
  34. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/config.rs +0 -0
  35. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/default_types.rs +0 -0
  36. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/dict.rs +0 -0
  37. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/file.rs +0 -0
  38. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/file_type.rs +0 -0
  39. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/file_type_specifics.rs +0 -0
  40. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/policy.rs +0 -0
  41. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/src/report.rs +0 -0
  42. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/tests/cmd/en-us.in/README.md +0 -0
  43. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/tests/cmd/false-positives.in/README.md +0 -0
  44. {typos-1.36.3 → typos-1.37.0}/crates/typos-cli/tests/cmd/filename-typo.in/README.md +0 -0
  45. {typos-1.36.3 → typos-1.37.0}/crates/typos-dict/README.md +0 -0
  46. {typos-1.36.3 → typos-1.37.0}/crates/typos-vars/README.md +0 -0
  47. {typos-1.36.3 → typos-1.37.0}/crates/typos-vars/src/vars_codegen.rs +0 -0
  48. {typos-1.36.3 → typos-1.37.0}/crates/varcon/README.md +0 -0
  49. {typos-1.36.3 → typos-1.37.0}/crates/varcon/src/codegen.rs +0 -0
  50. {typos-1.36.3 → typos-1.37.0}/crates/varcon-core/README.md +0 -0
  51. {typos-1.36.3 → typos-1.37.0}/crates/varcon-core/src/borrowed.rs +0 -0
  52. {typos-1.36.3 → typos-1.37.0}/crates/varcon-core/src/parser.rs +0 -0
  53. {typos-1.36.3 → typos-1.37.0}/pyproject.toml +0 -0
@@ -263,7 +263,7 @@ dependencies = [
263
263
 
264
264
  [[package]]
265
265
  name = "codespell-dict"
266
- version = "0.5.0"
266
+ version = "0.5.1"
267
267
  dependencies = [
268
268
  "codegenrs",
269
269
  "dictgen",
@@ -426,7 +426,7 @@ dependencies = [
426
426
 
427
427
  [[package]]
428
428
  name = "dictgen"
429
- version = "0.4.0"
429
+ version = "0.4.1"
430
430
  dependencies = [
431
431
  "aho-corasick",
432
432
  "phf",
@@ -1559,7 +1559,7 @@ dependencies = [
1559
1559
 
1560
1560
  [[package]]
1561
1561
  name = "typos"
1562
- version = "0.10.35"
1562
+ version = "0.10.36"
1563
1563
  dependencies = [
1564
1564
  "bstr",
1565
1565
  "itertools 0.14.0",
@@ -1572,7 +1572,7 @@ dependencies = [
1572
1572
 
1573
1573
  [[package]]
1574
1574
  name = "typos-cli"
1575
- version = "1.36.3"
1575
+ version = "1.37.0"
1576
1576
  dependencies = [
1577
1577
  "ahash",
1578
1578
  "annotate-snippets",
@@ -1621,7 +1621,7 @@ dependencies = [
1621
1621
 
1622
1622
  [[package]]
1623
1623
  name = "typos-dict"
1624
- version = "0.13.4"
1624
+ version = "0.13.5"
1625
1625
  dependencies = [
1626
1626
  "codegenrs",
1627
1627
  "csv",
@@ -1639,7 +1639,7 @@ dependencies = [
1639
1639
 
1640
1640
  [[package]]
1641
1641
  name = "typos-vars"
1642
- version = "0.10.0"
1642
+ version = "0.10.1"
1643
1643
  dependencies = [
1644
1644
  "codegenrs",
1645
1645
  "dictgen",
@@ -1701,7 +1701,7 @@ dependencies = [
1701
1701
 
1702
1702
  [[package]]
1703
1703
  name = "varcon"
1704
- version = "1.0.1"
1704
+ version = "1.0.2"
1705
1705
  dependencies = [
1706
1706
  "codegenrs",
1707
1707
  "snapbox",
@@ -1710,7 +1710,7 @@ dependencies = [
1710
1710
 
1711
1711
  [[package]]
1712
1712
  name = "varcon-core"
1713
- version = "5.0.3"
1713
+ version = "5.0.4"
1714
1714
  dependencies = [
1715
1715
  "enumflags2",
1716
1716
  "snapbox",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: typos
3
- Version: 1.36.3
3
+ Version: 1.37.0
4
4
  Classifier: Environment :: Console
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: Topic :: Software Development
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "dictgen"
3
- version = "0.4.0"
3
+ version = "0.4.1"
4
4
  description = "Compile-time case-insensitive map"
5
5
  categories = ["development-tools", "text-processing"]
6
6
  keywords = ["development", "spelling", "no_std"]
@@ -12,7 +12,7 @@ include.workspace = true
12
12
 
13
13
  [package.metadata.docs.rs]
14
14
  all-features = true
15
- rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
15
+ rustdoc-args = ["--generate-link-to-definition"]
16
16
 
17
17
  [features]
18
18
  default = ["std"]
@@ -1,4 +1,4 @@
1
- #![cfg_attr(docsrs, feature(doc_auto_cfg))]
1
+ #![cfg_attr(docsrs, feature(doc_cfg))]
2
2
  #![warn(clippy::print_stderr)]
3
3
  #![warn(clippy::print_stdout)]
4
4
 
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "typos"
3
- version = "0.10.35"
3
+ version = "0.10.36"
4
4
  description = "Source Code Spelling Correction"
5
5
  readme = "README.md"
6
6
  categories = ["development-tools", "text-processing"]
@@ -13,7 +13,7 @@ include.workspace = true
13
13
 
14
14
  [package.metadata.docs.rs]
15
15
  all-features = true
16
- rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
16
+ rustdoc-args = ["--generate-link-to-definition"]
17
17
 
18
18
  [dependencies]
19
19
  winnow = "0.7.0"
@@ -1,4 +1,4 @@
1
- #![cfg_attr(docsrs, feature(doc_auto_cfg))]
1
+ #![cfg_attr(docsrs, feature(doc_cfg))]
2
2
  #![warn(clippy::print_stderr)]
3
3
  #![warn(clippy::print_stdout)]
4
4
 
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "typos-cli"
3
- version = "1.36.3"
3
+ version = "1.37.0"
4
4
  description = "Source Code Spelling Correction"
5
5
  readme = "README.md"
6
6
  categories = ["development-tools", "text-processing"]
@@ -13,7 +13,7 @@ include.workspace = true
13
13
 
14
14
  [package.metadata.docs.rs]
15
15
  all-features = true
16
- rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
16
+ rustdoc-args = ["--generate-link-to-definition"]
17
17
 
18
18
  [package.metadata.release]
19
19
  tag-prefix = ""
@@ -42,7 +42,7 @@ doc = false
42
42
 
43
43
  [dependencies]
44
44
  typos = { version = "^0.10", path = "../typos" }
45
- varcon-core = { version = "^5.0.3", path = "../varcon-core" }
45
+ varcon-core = { version = "^5.0.4", path = "../varcon-core" }
46
46
  typos-dict = { version = "^0.13", path = "../typos-dict", optional = true }
47
47
  typos-vars = { version = "^0.10", path = "../typos-vars", optional = true }
48
48
  unicase = "2.8.1"
@@ -1,7 +1,7 @@
1
1
  //! `typos_cli`'s API is unstable. Open an issue for starting a discussion on getting a subset
2
2
  //! stabilized.
3
3
 
4
- #![cfg_attr(docsrs, feature(doc_auto_cfg))]
4
+ #![cfg_attr(docsrs, feature(doc_cfg))]
5
5
  #![warn(clippy::print_stderr)]
6
6
  #![warn(clippy::print_stdout)]
7
7
 
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "typos-dict"
3
- version = "0.13.4"
3
+ version = "0.13.5"
4
4
  description = "Source Code Spelling Correction"
5
5
  readme = "README.md"
6
6
  categories = ["development-tools", "text-processing"]
@@ -13,7 +13,7 @@ include.workspace = true
13
13
 
14
14
  [package.metadata.docs.rs]
15
15
  all-features = true
16
- rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
16
+ rustdoc-args = ["--generate-link-to-definition"]
17
17
 
18
18
  [dependencies]
19
19
  phf = "0.12.0"
@@ -1,4 +1,4 @@
1
- #![cfg_attr(docsrs, feature(doc_auto_cfg))]
1
+ #![cfg_attr(docsrs, feature(doc_cfg))]
2
2
  #![warn(clippy::print_stderr)]
3
3
  #![warn(clippy::print_stdout)]
4
4