crawlberg 1.1.4 → 1.3.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.
@@ -1,6 +1,11 @@
1
+ # This file is auto-generated by alef — DO NOT EDIT.
2
+ # alef:hash:6d3e12955a76fb5c98a03dc656a5b76ae41ba095ad388a22cb35ce647d7159fc
3
+ # To regenerate: alef generate
4
+ # To verify freshness: alef verify
5
+
1
6
  [package]
2
7
  name = "crawlberg-rb"
3
- version = "1.1.4"
8
+ version = "1.3.3"
4
9
  edition = "2024"
5
10
  license = "MIT"
6
11
  description = "High-performance web crawling engine"
@@ -17,10 +22,22 @@ path = "../src/lib.rs"
17
22
  crate-type = ["cdylib"]
18
23
 
19
24
  [dependencies]
20
- crawlberg = { version = "1.1.4", features = ["interact", "browser-chromiumoxide"] }
25
+ crawlberg = { version = "1.3.3", features = ["interact", "browser-chromiumoxide"] }
21
26
  futures = "0.3"
22
27
  magnus = "0.8"
23
28
  rb-sys = ">=0.9, <0.9.128"
24
29
  serde = { version = "1", features = ["derive"] }
25
30
  serde_json = "1"
26
31
  tokio = { version = "1", features = ["rt-multi-thread"] }
32
+
33
+ # This crate deliberately does not use `[lints]` / `workspace = true`: its C-ABI /
34
+ # PyO3 / napi / ext-php-rs / NIF boundary requires `unsafe` code, and the workspace's
35
+ # `[workspace.lints.rust]` sets `unsafe_code = "deny"` -- an all-or-nothing table that
36
+ # would turn every such boundary into a compile error. The `[lints.clippy]` block below
37
+ # instead carries the subset of the workspace's deny-by-default lint policy this crate
38
+ # can actually satisfy. ~keep
39
+ [lints.clippy]
40
+ all = { level = "warn", priority = -1 }
41
+ dbg_macro = "deny"
42
+ print_stderr = "deny"
43
+ print_stdout = "deny"
@@ -1,3 +1,8 @@
1
+ # This file is auto-generated by alef — DO NOT EDIT.
2
+ # alef:hash:7e8b3cef132610f31102ee2069cf33d39e5e1ece68f870166e669e04f476544e
3
+ # To regenerate: alef generate
4
+ # To verify freshness: alef verify
5
+
1
6
  # frozen_string_literal: true
2
7
 
3
8
  require "mkmf"