html-to-markdown 3.12.2 → 3.12.3
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/native/Cargo.lock +24 -7
- data/ext/html_to_markdown_rb/native/Cargo.toml +3 -3
- data/ext/html_to_markdown_rb/src/lib.rs +88 -71
- data/lib/html_to_markdown/version.rb +2 -2
- metadata +2 -4
- data/ext/html_to_markdown_rb/Cargo.lock +0 -954
- data/ext/html_to_markdown_rb/Cargo.toml +0 -50
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
[package]
|
|
3
|
-
name = "html-to-markdown-rb"
|
|
4
|
-
version = "3.12.2"
|
|
5
|
-
edition = "2024"
|
|
6
|
-
license = "MIT"
|
|
7
|
-
[workspace]
|
|
8
|
-
exclude = ["native"]
|
|
9
|
-
|
|
10
|
-
[lib]
|
|
11
|
-
crate-type = ["cdylib"]
|
|
12
|
-
|
|
13
|
-
[dependencies]
|
|
14
|
-
html-to-markdown-rs = { path = "../../../../crates/html-to-markdown", features = [
|
|
15
|
-
"full",
|
|
16
|
-
"metadata",
|
|
17
|
-
"visitor",
|
|
18
|
-
"serde",
|
|
19
|
-
"inline-images",
|
|
20
|
-
"testkit",
|
|
21
|
-
] }
|
|
22
|
-
magnus = "0.8"
|
|
23
|
-
serde = { version = "1", features = ["derive"] }
|
|
24
|
-
serde_json = "1"
|
|
25
|
-
|
|
26
|
-
# ~keep Binding crates cannot use `lints.workspace = true`: the workspace forbids
|
|
27
|
-
# `unsafe_code`, `forbid` is not overridable by an inner `allow`, and Cargo rejects
|
|
28
|
-
# mixing `workspace = true` with per-lint overrides. Generated binding glue is
|
|
29
|
-
# unsafe by construction. `pedantic`/`nursery`/`cargo` are deliberately NOT mirrored:
|
|
30
|
-
# the bridge source these crates compile is alef-generated and carries a DO NOT EDIT
|
|
31
|
-
# header, so those style findings are unfixable here and would only be satisfiable in
|
|
32
|
-
# the generator. What remains is the set this repo can actually act on.
|
|
33
|
-
[lints.rust]
|
|
34
|
-
unsafe_code = "allow"
|
|
35
|
-
# ~keep The bridge source is alef-generated and undocumented at the item level.
|
|
36
|
-
missing_docs = "allow"
|
|
37
|
-
unused_must_use = "deny"
|
|
38
|
-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(alef)', 'cfg(feature, values("testkit"))', 'cfg(frb_expand)'] }
|
|
39
|
-
|
|
40
|
-
[lints.clippy]
|
|
41
|
-
all = { level = "deny", priority = -1 }
|
|
42
|
-
print_stdout = "deny"
|
|
43
|
-
print_stderr = "deny"
|
|
44
|
-
dbg_macro = "deny"
|
|
45
|
-
# ~keep Emitted by the generated bridge itself, so unfixable in this repo.
|
|
46
|
-
collapsible_if = { level = "allow", priority = 1 }
|
|
47
|
-
useless_conversion = { level = "allow", priority = 1 }
|
|
48
|
-
redundant_field_names = { level = "allow", priority = 1 }
|
|
49
|
-
wrong_self_convention = { level = "allow", priority = 1 }
|
|
50
|
-
field_reassign_with_default = { level = "allow", priority = 1 }
|