html-to-markdown 3.5.0.pre.rc.2-x86_64-linux → 3.5.0.pre.rc.3-x86_64-linux

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: 46bb49d527e71719f01ee0d61648b4f4ffb519e0318c1983df197cb22db0e5c3
4
- data.tar.gz: 625e6e8329a72c01c6f0d084452129fb7001c079affdd11d8b183bf5631b2205
3
+ metadata.gz: 28d5e4252070fc9c846f55a430cf4e1c5877869452cffb99dfaef70bb2f1ee45
4
+ data.tar.gz: 5ddaf6ae6a9faabda5457ae2a80d1815611d4669016082a8402dec341416c317
5
5
  SHA512:
6
- metadata.gz: 6b0dc11ea51acab87747dfa967c3dafc973f195386a0a470db27b6d4aa1fe5f4b72d4e7e408bbccad498b837007a346ce205144150cde460e93d4d980b94263b
7
- data.tar.gz: 60e93f7e038844c0324faae2d764dd85bfe9af0050cf9938f8e3d0de87200339edde6b9011ec122bb92a150320433571c88023bee1b662cde7082f4f1058891e
6
+ metadata.gz: e8dc93b4facbadfc517dd16225053a8f5b734e0f0cecc00f8d7cdb6a020a0638f7e775a215552d7d0b6bb1e097af9fd3a33ed192ddadff57761744a268467ab0
7
+ data.tar.gz: e4e79b53a0ab945225878e505fcfab389c5f5bc4ef2bdd38312bca022bbc660e0612513977b8431709d9b8ebcaf71b8d1f24a915747587cdbac9e8dcfebbe652
@@ -1,7 +1,7 @@
1
1
 
2
2
  [package]
3
3
  name = "html-to-markdown-rb"
4
- version = "3.5.0-rc.2"
4
+ version = "3.5.0-rc.3"
5
5
  edition = "2024"
6
6
  license = "MIT"
7
7
  [workspace]
@@ -263,7 +263,7 @@ dependencies = [
263
263
 
264
264
  [[package]]
265
265
  name = "html-to-markdown-rb"
266
- version = "3.5.0-rc.2"
266
+ version = "3.5.0-rc.3"
267
267
  dependencies = [
268
268
  "async-trait",
269
269
  "html-to-markdown-rs",
@@ -275,7 +275,7 @@ dependencies = [
275
275
 
276
276
  [[package]]
277
277
  name = "html-to-markdown-rs"
278
- version = "3.5.0-rc.2"
278
+ version = "3.5.0-rc.3"
279
279
  dependencies = [
280
280
  "ahash",
281
281
  "astral-tl",
@@ -378,9 +378,9 @@ dependencies = [
378
378
 
379
379
  [[package]]
380
380
  name = "log"
381
- version = "0.4.29"
381
+ version = "0.4.30"
382
382
  source = "registry+https://github.com/rust-lang/crates.io-index"
383
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
383
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
384
384
 
385
385
  [[package]]
386
386
  name = "lru"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "html-to-markdown-rb"
3
- version = "3.5.0-rc.2"
3
+ version = "3.5.0-rc.3"
4
4
  edition = "2024"
5
5
  license = "MIT"
6
6
  description = "High-performance HTML to Markdown converter"
@@ -15,7 +15,7 @@ crate-type = ["cdylib"]
15
15
 
16
16
  [dependencies]
17
17
  async-trait = "0.1"
18
- html-to-markdown-rs = { version = "3.5.0-rc.2", path = "../../../../../crates/html-to-markdown", features = ["full", "metadata", "visitor", "serde", "inline-images"] }
18
+ html-to-markdown-rs = { version = "3.5.0-rc.3", path = "../../../../../crates/html-to-markdown", features = ["full", "metadata", "visitor", "serde", "inline-images"] }
19
19
  magnus = "0.8"
20
20
  serde = { version = "1", features = ["derive"] }
21
21
  serde_json = "1"
@@ -1,5 +1,5 @@
1
1
  // This file is auto-generated by alef. DO NOT EDIT.
2
- // alef:hash:037680f235275d219f36c92bc439d6099c3dea34a53f0a667715daba72b5c5e3
2
+ // alef:hash:a78ac81a75947288341eb3623c0a5461197636fb403a85865104c7e347dd77c5
3
3
  // Re-generate with: alef generate
4
4
  #![allow(dead_code, unused_imports, unused_variables)]
5
5
  #![allow(
@@ -6242,7 +6242,7 @@ impl From<html_to_markdown_rs::NodeContent> for NodeContent {
6242
6242
  entries: entries
6243
6243
  .iter()
6244
6244
  .map(|(a, b)| vec![a.to_string(), b.to_string()])
6245
- .collect(),
6245
+ .collect::<Vec<Vec<String>>>(),
6246
6246
  },
6247
6247
  html_to_markdown_rs::NodeContent::Group {
6248
6248
  label,
@@ -1,10 +1,10 @@
1
1
  # This file is auto-generated by alef — DO NOT EDIT.
2
- # alef:hash:f334b1ad877ffc38a0f3282142b2940f65cfb4b9a7d05e871eb1378d3a2f8ad6
2
+ # alef:hash:abdb9406d21cb8193cdb2925b7d60814d0727466e0d0fde413392f81f7265eca
3
3
  # To regenerate: alef generate
4
4
  # To verify freshness: alef verify --exit-code
5
5
  # Issues & docs: https://github.com/kreuzberg-dev/alef
6
6
  # frozen_string_literal: true
7
7
 
8
8
  module HtmlToMarkdown
9
- VERSION = "3.5.0.pre.rc.2"
9
+ VERSION = "3.5.0.pre.rc.3"
10
10
  end
Binary file
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: 3.5.0.pre.rc.2
4
+ version: 3.5.0.pre.rc.3
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Kreuzberg Team