cvxtract 0.2.0

LLM-powered structured extraction from CVs/resumes — PDF, DOCX, HTML, TXT input; typed Rust structs output.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "cvxtract"
version = "0.2.0"
build = false
exclude = [
    ".cache/",
    "target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LLM-powered structured extraction from CVs/resumes — PDF, DOCX, HTML, TXT input; typed Rust structs output."
documentation = "https://docs.rs/cvxtract"
readme = "README.md"
keywords = [
    "resume",
    "cv",
    "llm",
    "extraction",
    "document",
]
categories = [
    "text-processing",
    "parser-implementations",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/satadeep3927/cvxtract"

[features]
cuda = ["llama-cpp-2/cuda"]
metal = ["llama-cpp-2/metal"]
vulkan = ["llama-cpp-2/vulkan"]

[lib]
name = "cvxtract"
path = "src/lib.rs"

[[bin]]
name = "cvxtract"
path = "src/main.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.encoding_rs]
version = "0.8"

[dependencies.futures-util]
version = "0.3"

[dependencies.llama-cpp-2]
version = "0.1.138"
features = []

[dependencies.log]
version = "0.4"

[dependencies.pdf-extract]
version = "0.10.0"

[dependencies.quick-xml]
version = "0.31"

[dependencies.reqwest]
version = "0.11"
features = [
    "stream",
    "json",
]

[dependencies.schemars]
version = "0.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.tokio-util]
version = "0.7"
features = ["codec"]

[dependencies.zip]
version = "0.6"

[dev-dependencies.env_logger]
version = "0.11"