html-to-markdown 2.22.1 → 2.22.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a1097bed7616dcdcde79a2888dc296b0897dc30fb661e13c438adf69869270c
4
- data.tar.gz: fa26e922cbd1f66337da802517c2e1024e8bdc85e7f91c3178b1b0e999e6efba
3
+ metadata.gz: 6911ae0585ddc8efd1a785386ab046103dc92be1ac8285bf628a9287854abcbd
4
+ data.tar.gz: 71076d1626ab45b1f2167af2d462b5c7503568cbc4c29c9d65da17e1b22d0ef0
5
5
  SHA512:
6
- metadata.gz: b263a772d598aa07706a9a9c478bbec616e640af19928e3d4b8c26b04103cc720fe87ceac6b6094c04b48227a48b1571db28f5cf6d3b02ac21f363d419a364e1
7
- data.tar.gz: 3b2db17bea515b3880186e47f1f53b7932044f26f822aeed3d0d3cf5edb129e30d3c31e2f1fd87ee49f8806632ac3780834c42b41841ee3a3444c2a777d11c3f
6
+ metadata.gz: 0b143c37541a8fbdaf207760270196f67388060831b383e8565ad39beffb6731ffeacf741d036b31df714d24defe02034fd39ddd80f2e784903144ba33b639c9
7
+ data.tar.gz: e88c57d09db6977f1eaf41210145ede9c741624c61a088ae942319b9371a6ebe402162ab49c0954915a865ddbafbd354525105179a8025aae704e1de543137ac
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- html-to-markdown (2.22.1)
4
+ html-to-markdown (2.22.2)
5
5
  rb_sys (>= 0.9, < 1.0)
6
6
 
7
7
  GEM
@@ -148,7 +148,7 @@ CHECKSUMS
148
148
  ffi (1.17.3-arm64-darwin) sha256=0c690555d4cee17a7f07c04d59df39b2fba74ec440b19da1f685c6579bb0717f
149
149
  ffi (1.17.3-x86_64-linux-gnu) sha256=3746b01f677aae7b16dc1acb7cb3cc17b3e35bdae7676a3f568153fb0e2c887f
150
150
  fileutils (1.8.0) sha256=8c6b1df54e2540bdb2f39258f08af78853aa70bad52b4d394bbc6424593c6e02
151
- html-to-markdown (2.22.1)
151
+ html-to-markdown (2.22.2)
152
152
  i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
153
153
  json (2.18.0) sha256=b10506aee4183f5cf49e0efc48073d7b75843ce3782c68dbeb763351c08fd505
154
154
  language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "html-to-markdown-rb"
3
- version ="2.22.1"
3
+ version ="2.22.2"
4
4
  edition = "2024"
5
5
  authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
6
6
  license = "MIT"
@@ -13,16 +13,12 @@ description = "Ruby bindings (Magnus) for html-to-markdown - high-performance HT
13
13
  keywords = ["html", "markdown", "ruby", "magnus", "bindings"]
14
14
  categories = ["api-bindings"]
15
15
 
16
-
17
- [lints]
18
- workspace = true
19
-
20
16
  [lib]
21
17
  name = "html_to_markdown_rb"
22
18
  crate-type = ["cdylib", "rlib"]
23
19
 
24
20
  [dependencies]
25
- html-to-markdown-rs = { version = "2.22.1", features = ["inline-images", "visitor", "metadata"] }
21
+ html-to-markdown-rs = { version = "=2.22.2", features = ["inline-images", "visitor", "metadata"] }
26
22
  magnus = { git = "https://github.com/matsadler/magnus", rev = "f6db11769efb517427bf7f121f9c32e18b059b38", features = ["rb-sys"] }
27
23
 
28
24
  [target.'cfg(not(target_os = "windows"))'.dependencies]
@@ -30,9 +26,22 @@ pprof = { version = "0.15", features = ["flamegraph"], optional = true }
30
26
 
31
27
  [dev-dependencies]
32
28
  pretty_assertions = "1.4"
29
+
33
30
  [features]
34
31
  default = ["inline-images", "metadata", "visitor"]
35
32
  inline-images = ["html-to-markdown-rs/inline-images"]
36
33
  metadata = ["html-to-markdown-rs/metadata"]
37
34
  visitor = ["html-to-markdown-rs/visitor"]
38
35
  profiling = ["dep:pprof"]
36
+
37
+ [lints.rust]
38
+ unsafe_code = "forbid"
39
+ missing_docs = "warn"
40
+ unused_must_use = "deny"
41
+
42
+ [lints.clippy]
43
+ all = { level = "deny", priority = -1 }
44
+ cargo = { level = "deny", priority = -1 }
45
+ pedantic = { level = "warn", priority = -1 }
46
+ nursery = { level = "warn", priority = -1 }
47
+ multiple_crate_versions = "allow"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HtmlToMarkdown
4
- VERSION = '2.22.1'
4
+ VERSION = '2.22.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html-to-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.22.1
4
+ version: 2.22.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Na'aman Hirschfeld