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 +4 -4
- data/ext/html_to_markdown_rb/Cargo.toml +1 -1
- data/ext/html_to_markdown_rb/native/Cargo.lock +4 -4
- data/ext/html_to_markdown_rb/native/Cargo.toml +2 -2
- data/ext/html_to_markdown_rb/src/lib.rs +2 -2
- data/lib/html_to_markdown/version.rb +2 -2
- data/lib/html_to_markdown_rb.so +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28d5e4252070fc9c846f55a430cf4e1c5877869452cffb99dfaef70bb2f1ee45
|
|
4
|
+
data.tar.gz: 5ddaf6ae6a9faabda5457ae2a80d1815611d4669016082a8402dec341416c317
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8dc93b4facbadfc517dd16225053a8f5b734e0f0cecc00f8d7cdb6a020a0638f7e775a215552d7d0b6bb1e097af9fd3a33ed192ddadff57761744a268467ab0
|
|
7
|
+
data.tar.gz: e4e79b53a0ab945225878e505fcfab389c5f5bc4ef2bdd38312bca022bbc660e0612513977b8431709d9b8ebcaf71b8d1f24a915747587cdbac9e8dcfebbe652
|
|
@@ -263,7 +263,7 @@ dependencies = [
|
|
|
263
263
|
|
|
264
264
|
[[package]]
|
|
265
265
|
name = "html-to-markdown-rb"
|
|
266
|
-
version = "3.5.0-rc.
|
|
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.
|
|
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.
|
|
381
|
+
version = "0.4.30"
|
|
382
382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
-
checksum = "
|
|
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.
|
|
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.
|
|
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:
|
|
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:
|
|
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.
|
|
9
|
+
VERSION = "3.5.0.pre.rc.3"
|
|
10
10
|
end
|
data/lib/html_to_markdown_rb.so
CHANGED
|
Binary file
|