udpipe-rs 0.2.0

Rust bindings for UDPipe - a trainable pipeline for tokenization, tagging, lemmatization and dependency parsing of CoNLL-U files
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 = "2024"
rust-version = "1.85"
name = "udpipe-rs"
version = "0.2.0"
authors = ["Christopher Costello"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for UDPipe - a trainable pipeline for tokenization, tagging, lemmatization and dependency parsing of CoNLL-U files"
documentation = "https://docs.rs/udpipe-rs"
readme = "README.md"
keywords = [
    "nlp",
    "parsing",
    "udpipe",
    "dependency-parsing",
    "pos-tagging",
]
categories = [
    "text-processing",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ccostello97/udpipe-rs"

[package.metadata.llvm-cov]
ignore-filename-regex = "vendor/.*"
fail-under-functions = 100

[lib]
name = "udpipe_rs"
path = "src/lib.rs"
bench = false

[[example]]
name = "download_model"
path = "examples/download_model.rs"

[[example]]
name = "parse_text"
path = "examples/parse_text.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false

[dependencies.ureq]
version = "3.1"

[dev-dependencies.criterion]
version = "0.8.1"

[dev-dependencies.mockito]
version = "1.7"

[dev-dependencies.tempfile]
version = "3.15"

[build-dependencies.cc]
version = "1.2.54"

[lints.clippy]
allow_attributes_without_reason = "deny"
dbg_macro = "deny"
implicit_clone = "deny"
mem_forget = "deny"
missing_docs_in_private_items = "deny"
multiple_unsafe_ops_per_block = "deny"
print_stderr = "deny"
print_stdout = "deny"
single_call_fn = "deny"
str_to_string = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
unseparated_literal_suffix = "deny"
verbose_file_reads = "deny"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.rust]
missing_debug_implementations = "deny"
missing_docs = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unsafe_code = "allow"
unused_lifetimes = "deny"
unused_qualifications = "deny"

[lints.rust.future_incompatible]
level = "deny"
priority = -1

[lints.rust.nonstandard_style]
level = "deny"
priority = -1

[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1

[lints.rust.rust_2024_compatibility]
level = "deny"
priority = -1