theopendictionary 1.1.0__tar.gz → 1.4.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 theopendictionary might be problematic. Click here for more details.

Files changed (120) hide show
  1. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/Cargo.lock +120 -103
  2. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/PKG-INFO +1 -1
  3. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/CHANGELOG.md +35 -0
  4. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/Cargo.toml +1 -1
  5. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/config/aliases.rs +1 -0
  6. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/io/read.rs +4 -2
  7. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/io/write.rs +1 -0
  8. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/lookup/mod.rs +29 -4
  9. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/lookup/options.rs +8 -1
  10. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/lookup/tokenize.rs +36 -15
  11. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/mod.rs +1 -0
  12. theopendictionary-1.4.0/lib/src/core/resolve.rs +18 -0
  13. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/entry.rs +13 -3
  14. theopendictionary-1.4.0/lib/src/format/json/entry_ref.rs +29 -0
  15. theopendictionary-1.4.0/lib/src/format/json/form.rs +30 -0
  16. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/mod.rs +4 -0
  17. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/token.rs +23 -3
  18. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/entry.rs +13 -1
  19. theopendictionary-1.4.0/lib/src/models/entry_ref.rs +51 -0
  20. theopendictionary-1.4.0/lib/src/models/form.rs +60 -0
  21. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/mod.rs +4 -0
  22. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/CHANGELOG.md +28 -0
  23. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/Cargo.toml +1 -1
  24. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/dictionary.rs +15 -16
  25. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/lib.rs +2 -0
  26. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/entry.rs +10 -1
  27. theopendictionary-1.4.0/python/src/types/form.rs +42 -0
  28. theopendictionary-1.4.0/python/src/types/form_kind.rs +52 -0
  29. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/lookup.rs +15 -0
  30. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/mod.rs +3 -0
  31. theopendictionary-1.4.0/python/src/types/token.rs +82 -0
  32. theopendictionary-1.4.0/python/tests/__snapshots__/test_lookup.ambr +26 -0
  33. theopendictionary-1.4.0/python/tests/__snapshots__/test_tokenize.ambr +11 -0
  34. theopendictionary-1.4.0/python/tests/test_forms.py +66 -0
  35. theopendictionary-1.4.0/python/tests/test_lemma.py +74 -0
  36. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/tests/test_lookup.py +27 -0
  37. theopendictionary-1.4.0/python/tests/test_tokenize.py +121 -0
  38. theopendictionary-1.1.0/python/src/types/token.rs +0 -42
  39. theopendictionary-1.1.0/python/tests/__snapshots__/test_lookup.ambr +0 -26
  40. theopendictionary-1.1.0/python/tests/__snapshots__/test_tokenize.ambr +0 -11
  41. theopendictionary-1.1.0/python/tests/test_tokenize.py +0 -30
  42. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/Cargo.toml +0 -0
  43. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/report.json +0 -0
  44. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/compress.rs +0 -0
  45. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/config/config.rs +0 -0
  46. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/config/mod.rs +0 -0
  47. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/io/consts.rs +0 -0
  48. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/io/mod.rs +0 -0
  49. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/lexicon.rs +0 -0
  50. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/merge.rs +0 -0
  51. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/preview.rs +0 -0
  52. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/core/semver.rs +0 -0
  53. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/error.rs +0 -0
  54. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/ext.rs +0 -0
  55. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/html/html.rs +0 -0
  56. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/html/mod.rs +0 -0
  57. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/definition.rs +0 -0
  58. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/dictionary.rs +0 -0
  59. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/etymology.rs +0 -0
  60. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/group.rs +0 -0
  61. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/json.rs +0 -0
  62. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/note.rs +0 -0
  63. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/sense.rs +0 -0
  64. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/json/utils.rs +0 -0
  65. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/definition.rs +0 -0
  66. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/entry.rs +0 -0
  67. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/etymology.rs +0 -0
  68. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/example.rs +0 -0
  69. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/group.rs +0 -0
  70. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/md.rs +0 -0
  71. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/mod.rs +0 -0
  72. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/note.rs +0 -0
  73. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/pprint.rs +0 -0
  74. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/sense.rs +0 -0
  75. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/md/utils.rs +0 -0
  76. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/mod.rs +0 -0
  77. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/definitions.rs +0 -0
  78. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/dictionaries.rs +0 -0
  79. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/entries.rs +0 -0
  80. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/etymologies.rs +0 -0
  81. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/examples.rs +0 -0
  82. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/groups.rs +0 -0
  83. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/mod.rs +0 -0
  84. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/notes.rs +0 -0
  85. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/senses.rs +0 -0
  86. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/sql.rs +0 -0
  87. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/sql/utils.rs +0 -0
  88. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/format/xml.rs +0 -0
  89. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/fs.rs +0 -0
  90. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/lib.rs +0 -0
  91. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/md.rs +0 -0
  92. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/definition.rs +0 -0
  93. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/dictionary.rs +0 -0
  94. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/etymology.rs +0 -0
  95. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/example.rs +0 -0
  96. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/group.rs +0 -0
  97. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/id.rs +0 -0
  98. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/note.rs +0 -0
  99. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/pos.rs +0 -0
  100. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/sense.rs +0 -0
  101. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/models/serializable.rs +0 -0
  102. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/search/charabia.rs +0 -0
  103. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/search/constants.rs +0 -0
  104. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/search/index.rs +0 -0
  105. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/search/mod.rs +0 -0
  106. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/search/schema.rs +0 -0
  107. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/src/search/search.rs +0 -0
  108. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/lib/tasks.toml +0 -0
  109. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/pyproject.toml +0 -0
  110. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/.gitignore +0 -0
  111. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/requirements.txt +0 -0
  112. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/setup.cfg +0 -0
  113. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/definition.rs +0 -0
  114. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/etymology.rs +0 -0
  115. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/example.rs +0 -0
  116. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/group.rs +0 -0
  117. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/note.rs +0 -0
  118. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/types/sense.rs +0 -0
  119. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/src/utils.rs +0 -0
  120. {theopendictionary-1.1.0 → theopendictionary-1.4.0}/python/tasks.toml +0 -0
@@ -49,7 +49,7 @@ dependencies = [
49
49
  "mime",
50
50
  "percent-encoding",
51
51
  "pin-project-lite",
52
- "rand 0.9.0",
52
+ "rand 0.9.1",
53
53
  "sha1",
54
54
  "smallvec",
55
55
  "tokio",
@@ -306,9 +306,9 @@ dependencies = [
306
306
 
307
307
  [[package]]
308
308
  name = "anyhow"
309
- version = "1.0.97"
309
+ version = "1.0.98"
310
310
  source = "registry+https://github.com/rust-lang/crates.io-index"
311
- checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
311
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
312
312
 
313
313
  [[package]]
314
314
  name = "arc-swap"
@@ -412,9 +412,9 @@ dependencies = [
412
412
 
413
413
  [[package]]
414
414
  name = "brotli-decompressor"
415
- version = "4.0.2"
415
+ version = "4.0.3"
416
416
  source = "registry+https://github.com/rust-lang/crates.io-index"
417
- checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
417
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
418
418
  dependencies = [
419
419
  "alloc-no-stdlib",
420
420
  "alloc-stdlib",
@@ -478,9 +478,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
478
478
 
479
479
  [[package]]
480
480
  name = "cc"
481
- version = "1.2.17"
481
+ version = "1.2.19"
482
482
  source = "registry+https://github.com/rust-lang/crates.io-index"
483
- checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
483
+ checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
484
484
  dependencies = [
485
485
  "jobserver",
486
486
  "libc",
@@ -557,9 +557,9 @@ dependencies = [
557
557
 
558
558
  [[package]]
559
559
  name = "clap"
560
- version = "4.5.34"
560
+ version = "4.5.36"
561
561
  source = "registry+https://github.com/rust-lang/crates.io-index"
562
- checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff"
562
+ checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
563
563
  dependencies = [
564
564
  "clap_builder",
565
565
  "clap_derive",
@@ -567,9 +567,9 @@ dependencies = [
567
567
 
568
568
  [[package]]
569
569
  name = "clap_builder"
570
- version = "4.5.34"
570
+ version = "4.5.36"
571
571
  source = "registry+https://github.com/rust-lang/crates.io-index"
572
- checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489"
572
+ checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
573
573
  dependencies = [
574
574
  "anstream",
575
575
  "anstyle",
@@ -699,9 +699,9 @@ dependencies = [
699
699
 
700
700
  [[package]]
701
701
  name = "crossbeam-channel"
702
- version = "0.5.14"
702
+ version = "0.5.15"
703
703
  source = "registry+https://github.com/rust-lang/crates.io-index"
704
- checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
704
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
705
705
  dependencies = [
706
706
  "crossbeam-utils",
707
707
  ]
@@ -780,9 +780,9 @@ dependencies = [
780
780
 
781
781
  [[package]]
782
782
  name = "darling"
783
- version = "0.20.10"
783
+ version = "0.20.11"
784
784
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
- checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
785
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
786
786
  dependencies = [
787
787
  "darling_core",
788
788
  "darling_macro",
@@ -790,9 +790,9 @@ dependencies = [
790
790
 
791
791
  [[package]]
792
792
  name = "darling_core"
793
- version = "0.20.10"
793
+ version = "0.20.11"
794
794
  source = "registry+https://github.com/rust-lang/crates.io-index"
795
- checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
795
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
796
796
  dependencies = [
797
797
  "fnv",
798
798
  "ident_case",
@@ -804,9 +804,9 @@ dependencies = [
804
804
 
805
805
  [[package]]
806
806
  name = "darling_macro"
807
- version = "0.20.10"
807
+ version = "0.20.11"
808
808
  source = "registry+https://github.com/rust-lang/crates.io-index"
809
- checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
809
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
810
810
  dependencies = [
811
811
  "darling_core",
812
812
  "quote",
@@ -1035,9 +1035,9 @@ dependencies = [
1035
1035
 
1036
1036
  [[package]]
1037
1037
  name = "env_logger"
1038
- version = "0.11.7"
1038
+ version = "0.11.8"
1039
1039
  source = "registry+https://github.com/rust-lang/crates.io-index"
1040
- checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
1040
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
1041
1041
  dependencies = [
1042
1042
  "anstream",
1043
1043
  "anstyle",
@@ -1054,12 +1054,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1054
1054
 
1055
1055
  [[package]]
1056
1056
  name = "errno"
1057
- version = "0.3.10"
1057
+ version = "0.3.11"
1058
1058
  source = "registry+https://github.com/rust-lang/crates.io-index"
1059
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
1059
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
1060
1060
  dependencies = [
1061
1061
  "libc",
1062
- "windows-sys 0.52.0",
1062
+ "windows-sys 0.59.0",
1063
1063
  ]
1064
1064
 
1065
1065
  [[package]]
@@ -1088,9 +1088,9 @@ dependencies = [
1088
1088
 
1089
1089
  [[package]]
1090
1090
  name = "flate2"
1091
- version = "1.1.0"
1091
+ version = "1.1.1"
1092
1092
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
- checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
1093
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
1094
1094
  dependencies = [
1095
1095
  "crc32fast",
1096
1096
  "miniz_oxide",
@@ -1247,9 +1247,9 @@ dependencies = [
1247
1247
 
1248
1248
  [[package]]
1249
1249
  name = "half"
1250
- version = "2.5.0"
1250
+ version = "2.6.0"
1251
1251
  source = "registry+https://github.com/rust-lang/crates.io-index"
1252
- checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1"
1252
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
1253
1253
  dependencies = [
1254
1254
  "cfg-if",
1255
1255
  "crunchy",
@@ -1338,6 +1338,12 @@ dependencies = [
1338
1338
  "libm",
1339
1339
  ]
1340
1340
 
1341
+ [[package]]
1342
+ name = "humantime"
1343
+ version = "2.2.0"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1346
+
1341
1347
  [[package]]
1342
1348
  name = "icu_collections"
1343
1349
  version = "1.5.0"
@@ -1379,9 +1385,9 @@ dependencies = [
1379
1385
 
1380
1386
  [[package]]
1381
1387
  name = "icu_locid_transform_data"
1382
- version = "1.5.0"
1388
+ version = "1.5.1"
1383
1389
  source = "registry+https://github.com/rust-lang/crates.io-index"
1384
- checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1390
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1385
1391
 
1386
1392
  [[package]]
1387
1393
  name = "icu_normalizer"
@@ -1403,9 +1409,9 @@ dependencies = [
1403
1409
 
1404
1410
  [[package]]
1405
1411
  name = "icu_normalizer_data"
1406
- version = "1.5.0"
1412
+ version = "1.5.1"
1407
1413
  source = "registry+https://github.com/rust-lang/crates.io-index"
1408
- checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1414
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1409
1415
 
1410
1416
  [[package]]
1411
1417
  name = "icu_properties"
@@ -1424,9 +1430,9 @@ dependencies = [
1424
1430
 
1425
1431
  [[package]]
1426
1432
  name = "icu_properties_data"
1427
- version = "1.5.0"
1433
+ version = "1.5.1"
1428
1434
  source = "registry+https://github.com/rust-lang/crates.io-index"
1429
- checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1435
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1430
1436
 
1431
1437
  [[package]]
1432
1438
  name = "icu_provider"
@@ -1514,9 +1520,9 @@ dependencies = [
1514
1520
 
1515
1521
  [[package]]
1516
1522
  name = "indexmap"
1517
- version = "2.8.0"
1523
+ version = "2.9.0"
1518
1524
  source = "registry+https://github.com/rust-lang/crates.io-index"
1519
- checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
1525
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1520
1526
  dependencies = [
1521
1527
  "equivalent",
1522
1528
  "hashbrown 0.15.2",
@@ -1596,7 +1602,7 @@ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1596
1602
  dependencies = [
1597
1603
  "hermit-abi 0.5.0",
1598
1604
  "libc",
1599
- "windows-sys 0.52.0",
1605
+ "windows-sys 0.59.0",
1600
1606
  ]
1601
1607
 
1602
1608
  [[package]]
@@ -1655,9 +1661,9 @@ dependencies = [
1655
1661
 
1656
1662
  [[package]]
1657
1663
  name = "jiff"
1658
- version = "0.2.4"
1664
+ version = "0.2.8"
1659
1665
  source = "registry+https://github.com/rust-lang/crates.io-index"
1660
- checksum = "d699bc6dfc879fb1bf9bdff0d4c56f0884fc6f0d0eb0fba397a6d00cd9a6b85e"
1666
+ checksum = "e5ad87c89110f55e4cd4dc2893a9790820206729eaf221555f742d540b0724a0"
1661
1667
  dependencies = [
1662
1668
  "jiff-static",
1663
1669
  "log",
@@ -1668,9 +1674,9 @@ dependencies = [
1668
1674
 
1669
1675
  [[package]]
1670
1676
  name = "jiff-static"
1671
- version = "0.2.4"
1677
+ version = "0.2.8"
1672
1678
  source = "registry+https://github.com/rust-lang/crates.io-index"
1673
- checksum = "8d16e75759ee0aa64c57a56acbf43916987b20c77373cb7e808979e02b93c9f9"
1679
+ checksum = "d076d5b64a7e2fe6f0743f02c43ca4a6725c0f904203bfe276a5b3e793103605"
1674
1680
  dependencies = [
1675
1681
  "proc-macro2",
1676
1682
  "quote",
@@ -1679,10 +1685,11 @@ dependencies = [
1679
1685
 
1680
1686
  [[package]]
1681
1687
  name = "jobserver"
1682
- version = "0.1.32"
1688
+ version = "0.1.33"
1683
1689
  source = "registry+https://github.com/rust-lang/crates.io-index"
1684
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1690
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1685
1691
  dependencies = [
1692
+ "getrandom 0.3.2",
1686
1693
  "libc",
1687
1694
  ]
1688
1695
 
@@ -1725,9 +1732,9 @@ checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
1725
1732
 
1726
1733
  [[package]]
1727
1734
  name = "libc"
1728
- version = "0.2.171"
1735
+ version = "0.2.172"
1729
1736
  source = "registry+https://github.com/rust-lang/crates.io-index"
1730
- checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1737
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1731
1738
 
1732
1739
  [[package]]
1733
1740
  name = "libflate"
@@ -2107,9 +2114,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2107
2114
 
2108
2115
  [[package]]
2109
2116
  name = "linux-raw-sys"
2110
- version = "0.9.3"
2117
+ version = "0.9.4"
2111
2118
  source = "registry+https://github.com/rust-lang/crates.io-index"
2112
- checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
2119
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2113
2120
 
2114
2121
  [[package]]
2115
2122
  name = "litemap"
@@ -2146,9 +2153,9 @@ dependencies = [
2146
2153
 
2147
2154
  [[package]]
2148
2155
  name = "log"
2149
- version = "0.4.26"
2156
+ version = "0.4.27"
2150
2157
  source = "registry+https://github.com/rust-lang/crates.io-index"
2151
- checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
2158
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
2152
2159
 
2153
2160
  [[package]]
2154
2161
  name = "lru"
@@ -2159,6 +2166,15 @@ dependencies = [
2159
2166
  "hashbrown 0.15.2",
2160
2167
  ]
2161
2168
 
2169
+ [[package]]
2170
+ name = "lru"
2171
+ version = "0.14.0"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "9f8cc7106155f10bdf99a6f379688f543ad6596a415375b36a59a054ceda1198"
2174
+ dependencies = [
2175
+ "hashbrown 0.15.2",
2176
+ ]
2177
+
2162
2178
  [[package]]
2163
2179
  name = "lz4_flex"
2164
2180
  version = "0.11.3"
@@ -2241,9 +2257,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2241
2257
 
2242
2258
  [[package]]
2243
2259
  name = "miniz_oxide"
2244
- version = "0.8.5"
2260
+ version = "0.8.8"
2245
2261
  source = "registry+https://github.com/rust-lang/crates.io-index"
2246
- checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
2262
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2247
2263
  dependencies = [
2248
2264
  "adler2",
2249
2265
  ]
@@ -2406,7 +2422,7 @@ dependencies = [
2406
2422
 
2407
2423
  [[package]]
2408
2424
  name = "odict"
2409
- version = "2.1.0"
2425
+ version = "2.5.0"
2410
2426
  dependencies = [
2411
2427
  "brotli",
2412
2428
  "byteorder",
@@ -2432,7 +2448,7 @@ dependencies = [
2432
2448
 
2433
2449
  [[package]]
2434
2450
  name = "odict-cli"
2435
- version = "2.1.0"
2451
+ version = "2.4.1"
2436
2452
  dependencies = [
2437
2453
  "actix-web",
2438
2454
  "anyhow",
@@ -2441,7 +2457,9 @@ dependencies = [
2441
2457
  "derive_more",
2442
2458
  "env_logger",
2443
2459
  "humansize",
2460
+ "humantime",
2444
2461
  "indicatif",
2462
+ "lru 0.14.0",
2445
2463
  "num-format",
2446
2464
  "odict",
2447
2465
  "pulldown-cmark",
@@ -2450,7 +2468,7 @@ dependencies = [
2450
2468
 
2451
2469
  [[package]]
2452
2470
  name = "odict_node"
2453
- version = "0.0.2"
2471
+ version = "1.1.1"
2454
2472
  dependencies = [
2455
2473
  "merge",
2456
2474
  "napi",
@@ -2461,7 +2479,7 @@ dependencies = [
2461
2479
 
2462
2480
  [[package]]
2463
2481
  name = "odict_python"
2464
- version = "1.1.0"
2482
+ version = "1.4.0"
2465
2483
  dependencies = [
2466
2484
  "either",
2467
2485
  "odict",
@@ -2470,9 +2488,9 @@ dependencies = [
2470
2488
 
2471
2489
  [[package]]
2472
2490
  name = "once_cell"
2473
- version = "1.21.1"
2491
+ version = "1.21.3"
2474
2492
  source = "registry+https://github.com/rust-lang/crates.io-index"
2475
- checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
2493
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2476
2494
 
2477
2495
  [[package]]
2478
2496
  name = "oneshot"
@@ -2690,9 +2708,9 @@ dependencies = [
2690
2708
 
2691
2709
  [[package]]
2692
2710
  name = "proc-macro2"
2693
- version = "1.0.94"
2711
+ version = "1.0.95"
2694
2712
  source = "registry+https://github.com/rust-lang/crates.io-index"
2695
- checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2713
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2696
2714
  dependencies = [
2697
2715
  "unicode-ident",
2698
2716
  ]
@@ -2738,9 +2756,9 @@ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
2738
2756
 
2739
2757
  [[package]]
2740
2758
  name = "pyo3"
2741
- version = "0.24.0"
2759
+ version = "0.24.1"
2742
2760
  source = "registry+https://github.com/rust-lang/crates.io-index"
2743
- checksum = "7f1c6c3591120564d64db2261bec5f910ae454f01def849b9c22835a84695e86"
2761
+ checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
2744
2762
  dependencies = [
2745
2763
  "cfg-if",
2746
2764
  "either",
@@ -2757,9 +2775,9 @@ dependencies = [
2757
2775
 
2758
2776
  [[package]]
2759
2777
  name = "pyo3-build-config"
2760
- version = "0.24.0"
2778
+ version = "0.24.1"
2761
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2762
- checksum = "e9b6c2b34cf71427ea37c7001aefbaeb85886a074795e35f161f5aecc7620a7a"
2780
+ checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
2763
2781
  dependencies = [
2764
2782
  "once_cell",
2765
2783
  "target-lexicon",
@@ -2767,9 +2785,9 @@ dependencies = [
2767
2785
 
2768
2786
  [[package]]
2769
2787
  name = "pyo3-ffi"
2770
- version = "0.24.0"
2788
+ version = "0.24.1"
2771
2789
  source = "registry+https://github.com/rust-lang/crates.io-index"
2772
- checksum = "5507651906a46432cdda02cd02dd0319f6064f1374c9147c45b978621d2c3a9c"
2790
+ checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
2773
2791
  dependencies = [
2774
2792
  "libc",
2775
2793
  "pyo3-build-config",
@@ -2777,9 +2795,9 @@ dependencies = [
2777
2795
 
2778
2796
  [[package]]
2779
2797
  name = "pyo3-macros"
2780
- version = "0.24.0"
2798
+ version = "0.24.1"
2781
2799
  source = "registry+https://github.com/rust-lang/crates.io-index"
2782
- checksum = "b0d394b5b4fd8d97d48336bb0dd2aebabad39f1d294edd6bcd2cccf2eefe6f42"
2800
+ checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
2783
2801
  dependencies = [
2784
2802
  "proc-macro2",
2785
2803
  "pyo3-macros-backend",
@@ -2789,9 +2807,9 @@ dependencies = [
2789
2807
 
2790
2808
  [[package]]
2791
2809
  name = "pyo3-macros-backend"
2792
- version = "0.24.0"
2810
+ version = "0.24.1"
2793
2811
  source = "registry+https://github.com/rust-lang/crates.io-index"
2794
- checksum = "fd72da09cfa943b1080f621f024d2ef7e2773df7badd51aa30a2be1f8caa7c8e"
2812
+ checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
2795
2813
  dependencies = [
2796
2814
  "heck 0.5.0",
2797
2815
  "proc-macro2",
@@ -2802,9 +2820,9 @@ dependencies = [
2802
2820
 
2803
2821
  [[package]]
2804
2822
  name = "quick-xml"
2805
- version = "0.37.3"
2823
+ version = "0.37.4"
2806
2824
  source = "registry+https://github.com/rust-lang/crates.io-index"
2807
- checksum = "bf763ab1c7a3aa408be466efc86efe35ed1bd3dd74173ed39d6b0d0a6f0ba148"
2825
+ checksum = "a4ce8c88de324ff838700f36fb6ab86c96df0e3c4ab6ef3a9b2044465cce1369"
2808
2826
  dependencies = [
2809
2827
  "memchr",
2810
2828
  "serde",
@@ -2847,13 +2865,12 @@ dependencies = [
2847
2865
 
2848
2866
  [[package]]
2849
2867
  name = "rand"
2850
- version = "0.9.0"
2868
+ version = "0.9.1"
2851
2869
  source = "registry+https://github.com/rust-lang/crates.io-index"
2852
- checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2870
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2853
2871
  dependencies = [
2854
2872
  "rand_chacha 0.9.0",
2855
2873
  "rand_core 0.9.3",
2856
- "zerocopy 0.8.24",
2857
2874
  ]
2858
2875
 
2859
2876
  [[package]]
@@ -2926,9 +2943,9 @@ dependencies = [
2926
2943
 
2927
2944
  [[package]]
2928
2945
  name = "redox_syscall"
2929
- version = "0.5.10"
2946
+ version = "0.5.11"
2930
2947
  source = "registry+https://github.com/rust-lang/crates.io-index"
2931
- checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
2948
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2932
2949
  dependencies = [
2933
2950
  "bitflags 2.9.0",
2934
2951
  ]
@@ -3070,27 +3087,27 @@ dependencies = [
3070
3087
  "errno",
3071
3088
  "libc",
3072
3089
  "linux-raw-sys 0.4.15",
3073
- "windows-sys 0.52.0",
3090
+ "windows-sys 0.59.0",
3074
3091
  ]
3075
3092
 
3076
3093
  [[package]]
3077
3094
  name = "rustix"
3078
- version = "1.0.3"
3095
+ version = "1.0.5"
3079
3096
  source = "registry+https://github.com/rust-lang/crates.io-index"
3080
- checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
3097
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
3081
3098
  dependencies = [
3082
3099
  "bitflags 2.9.0",
3083
3100
  "errno",
3084
3101
  "libc",
3085
- "linux-raw-sys 0.9.3",
3086
- "windows-sys 0.52.0",
3102
+ "linux-raw-sys 0.9.4",
3103
+ "windows-sys 0.59.0",
3087
3104
  ]
3088
3105
 
3089
3106
  [[package]]
3090
3107
  name = "rustls"
3091
- version = "0.23.25"
3108
+ version = "0.23.26"
3092
3109
  source = "registry+https://github.com/rust-lang/crates.io-index"
3093
- checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c"
3110
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
3094
3111
  dependencies = [
3095
3112
  "log",
3096
3113
  "once_cell",
@@ -3109,9 +3126,9 @@ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3109
3126
 
3110
3127
  [[package]]
3111
3128
  name = "rustls-webpki"
3112
- version = "0.103.0"
3129
+ version = "0.103.1"
3113
3130
  source = "registry+https://github.com/rust-lang/crates.io-index"
3114
- checksum = "0aa4eeac2588ffff23e9d7a7e9b3f971c5fb5b7ebc9452745e0c232c64f83b2f"
3131
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
3115
3132
  dependencies = [
3116
3133
  "ring",
3117
3134
  "rustls-pki-types",
@@ -3147,9 +3164,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3147
3164
 
3148
3165
  [[package]]
3149
3166
  name = "sea-query"
3150
- version = "0.32.3"
3167
+ version = "0.32.4"
3151
3168
  source = "registry+https://github.com/rust-lang/crates.io-index"
3152
- checksum = "f5a24d8b9fcd2674a6c878a3d871f4f1380c6c43cc3718728ac96864d888458e"
3169
+ checksum = "d99447c24da0cded00089e2021e1624af90878c65f7534319448d01da3df869d"
3153
3170
  dependencies = [
3154
3171
  "inherent",
3155
3172
  "sea-query-derive",
@@ -3289,15 +3306,15 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
3289
3306
 
3290
3307
  [[package]]
3291
3308
  name = "smallvec"
3292
- version = "1.14.0"
3309
+ version = "1.15.0"
3293
3310
  source = "registry+https://github.com/rust-lang/crates.io-index"
3294
- checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3311
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3295
3312
 
3296
3313
  [[package]]
3297
3314
  name = "socket2"
3298
- version = "0.5.8"
3315
+ version = "0.5.9"
3299
3316
  source = "registry+https://github.com/rust-lang/crates.io-index"
3300
- checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3317
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3301
3318
  dependencies = [
3302
3319
  "libc",
3303
3320
  "windows-sys 0.52.0",
@@ -3398,7 +3415,7 @@ dependencies = [
3398
3415
  "itertools 0.12.1",
3399
3416
  "levenshtein_automata",
3400
3417
  "log",
3401
- "lru",
3418
+ "lru 0.12.5",
3402
3419
  "lz4_flex",
3403
3420
  "measure_time",
3404
3421
  "memmap2",
@@ -3543,8 +3560,8 @@ dependencies = [
3543
3560
  "fastrand",
3544
3561
  "getrandom 0.3.2",
3545
3562
  "once_cell",
3546
- "rustix 1.0.3",
3547
- "windows-sys 0.52.0",
3563
+ "rustix 1.0.5",
3564
+ "windows-sys 0.59.0",
3548
3565
  ]
3549
3566
 
3550
3567
  [[package]]
@@ -3589,9 +3606,9 @@ dependencies = [
3589
3606
 
3590
3607
  [[package]]
3591
3608
  name = "time"
3592
- version = "0.3.40"
3609
+ version = "0.3.41"
3593
3610
  source = "registry+https://github.com/rust-lang/crates.io-index"
3594
- checksum = "9d9c75b47bdff86fa3334a3db91356b8d7d86a9b839dab7d0bdc5c3d3a077618"
3611
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
3595
3612
  dependencies = [
3596
3613
  "deranged",
3597
3614
  "itoa",
@@ -3610,9 +3627,9 @@ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3610
3627
 
3611
3628
  [[package]]
3612
3629
  name = "time-macros"
3613
- version = "0.2.21"
3630
+ version = "0.2.22"
3614
3631
  source = "registry+https://github.com/rust-lang/crates.io-index"
3615
- checksum = "29aa485584182073ed57fd5004aa09c371f021325014694e432313345865fd04"
3632
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
3616
3633
  dependencies = [
3617
3634
  "num-conv",
3618
3635
  "time-core",
@@ -3655,9 +3672,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3655
3672
 
3656
3673
  [[package]]
3657
3674
  name = "tokio"
3658
- version = "1.44.1"
3675
+ version = "1.44.2"
3659
3676
  source = "registry+https://github.com/rust-lang/crates.io-index"
3660
- checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
3677
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
3661
3678
  dependencies = [
3662
3679
  "backtrace",
3663
3680
  "bytes",
@@ -3842,7 +3859,7 @@ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3842
3859
  dependencies = [
3843
3860
  "getrandom 0.3.2",
3844
3861
  "js-sys",
3845
- "rand 0.9.0",
3862
+ "rand 0.9.1",
3846
3863
  "serde",
3847
3864
  "uuid-macro-internal",
3848
3865
  "wasm-bindgen",
@@ -4015,7 +4032,7 @@ version = "0.1.9"
4015
4032
  source = "registry+https://github.com/rust-lang/crates.io-index"
4016
4033
  checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4017
4034
  dependencies = [
4018
- "windows-sys 0.52.0",
4035
+ "windows-sys 0.59.0",
4019
4036
  ]
4020
4037
 
4021
4038
  [[package]]
@@ -4134,7 +4151,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
4151
  checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
4135
4152
  dependencies = [
4136
4153
  "libc",
4137
- "rustix 1.0.3",
4154
+ "rustix 1.0.5",
4138
4155
  ]
4139
4156
 
4140
4157
  [[package]]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: theopendictionary
3
- Version: 1.1.0
3
+ Version: 1.4.0
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy