[package]
edition = "2021"
name = "docdigitizer"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust SDK for the DocDigitizer document processing API"
readme = "README.md"
keywords = [
"docdigitizer",
"ocr",
"pdf",
"document-processing",
"invoice",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/DocDigitizer/dd-v3-integrations"
[lib]
name = "docdigitizer"
path = "src/lib.rs"
[[test]]
name = "contract_test"
path = "tests/contract_test.rs"
[[test]]
name = "errors_test"
path = "tests/errors_test.rs"
[[test]]
name = "models_test"
path = "tests/models_test.rs"
[dependencies.reqwest]
version = "0.12"
features = [
"multipart",
"json",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["fs"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]