Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3fe9ccee07 |
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pdf-inspector"
|
name = "pdf-inspector"
|
||||||
version = "0.1.7"
|
version = "0.1.8"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
autobins = false
|
autobins = false
|
||||||
authors = ["Firecrawl Team"]
|
authors = ["Firecrawl Team"]
|
||||||
|
|||||||
Generated
+2
-2
@@ -851,7 +851,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pdf-inspector"
|
name = "pdf-inspector"
|
||||||
version = "0.1.7"
|
version = "0.1.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"include_dir",
|
"include_dir",
|
||||||
@@ -867,7 +867,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pdf-inspector-napi"
|
name = "pdf-inspector-napi"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"napi",
|
"napi",
|
||||||
"napi-build",
|
"napi-build",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pdf-inspector-napi"
|
name = "pdf-inspector-napi"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|||||||
+6
-6
@@ -8,12 +8,12 @@
|
|||||||
"@napi-rs/cli": "^3.4.1",
|
"@napi-rs/cli": "^3.4.1",
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@firecrawl/pdf-inspector-darwin-arm64": "1.12.0",
|
"@firecrawl/pdf-inspector-darwin-arm64": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-linux-arm64-gnu": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-arm64-gnu": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-linux-arm64-musl": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-arm64-musl": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-linux-x64-gnu": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-x64-gnu": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-linux-x64-musl": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-x64-musl": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-win32-x64-msvc": "1.12.0",
|
"@firecrawl/pdf-inspector-win32-x64-msvc": "1.13.0",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
+7
-7
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@firecrawl/pdf-inspector",
|
"name": "@firecrawl/pdf-inspector",
|
||||||
"version": "1.12.0",
|
"version": "1.13.0",
|
||||||
"description": "Fast PDF classification and text extraction. Detect text-based vs scanned PDFs, extract text by region with quality checks. Native Rust performance via napi-rs.",
|
"description": "Fast PDF classification and text extraction. Detect text-based vs scanned PDFs, extract text by region with quality checks. Native Rust performance via napi-rs.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
@@ -52,11 +52,11 @@
|
|||||||
"@napi-rs/cli": "^3.4.1"
|
"@napi-rs/cli": "^3.4.1"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@firecrawl/pdf-inspector-linux-x64-gnu": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-x64-gnu": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-linux-x64-musl": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-x64-musl": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-linux-arm64-gnu": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-arm64-gnu": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-linux-arm64-musl": "1.12.0",
|
"@firecrawl/pdf-inspector-linux-arm64-musl": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-darwin-arm64": "1.12.0",
|
"@firecrawl/pdf-inspector-darwin-arm64": "1.13.0",
|
||||||
"@firecrawl/pdf-inspector-win32-x64-msvc": "1.12.0"
|
"@firecrawl/pdf-inspector-win32-x64-msvc": "1.13.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ build-backend = "maturin"
|
|||||||
name = "pdf-inspector"
|
name = "pdf-inspector"
|
||||||
# Bump this to publish to PyPI — CI publishes automatically when the version
|
# Bump this to publish to PyPI — CI publishes automatically when the version
|
||||||
# changes on main (same flow as napi/package.json for npm).
|
# changes on main (same flow as napi/package.json for npm).
|
||||||
version = "0.2.6"
|
version = "0.2.7"
|
||||||
description = "Fast PDF inspection, classification, and text extraction with smart scanned vs text-based detection"
|
description = "Fast PDF inspection, classification, and text extraction with smart scanned vs text-based detection"
|
||||||
readme = "docs/python.md"
|
readme = "docs/python.md"
|
||||||
license = { text = "MIT" }
|
license = { text = "MIT" }
|
||||||
|
|||||||
Generated
+2
-2
@@ -724,7 +724,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pdf-inspector"
|
name = "pdf-inspector"
|
||||||
version = "0.1.7"
|
version = "0.1.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"include_dir",
|
"include_dir",
|
||||||
@@ -740,7 +740,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pdf-inspector-wasm"
|
name = "pdf-inspector-wasm"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"console_error_panic_hook",
|
"console_error_panic_hook",
|
||||||
"js-sys",
|
"js-sys",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pdf-inspector-wasm"
|
name = "pdf-inspector-wasm"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Firecrawl Team"]
|
authors = ["Firecrawl Team"]
|
||||||
description = "Browser WebAssembly bindings for pdf-inspector"
|
description = "Browser WebAssembly bindings for pdf-inspector"
|
||||||
|
|||||||
Reference in New Issue
Block a user