# 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" rust-version = "1.69.0" name = "keyword_extraction" version = "1.5.0" authors = ["Afonso Barracha "] build = false publish = true autobins = false autoexamples = false autotests = false autobenches = false description = "Collection of algorithms for keyword extraction from text" homepage = "https://github.com/tugascript/keyword-extraction-rs" documentation = "https://docs.rs/keyword_extraction" readme = "README.md" keywords = [ "nlp", "text-extraction", "keyword-extraction", ] license = "LGPL-3.0-or-later" repository = "https://github.com/tugascript/keyword-extraction-rs" [lib] name = "keyword_extraction" path = "src/lib.rs" [dependencies.rayon] version = "1.10.0" optional = true [dependencies.regex] version = "1.11.0" [dependencies.unicode-segmentation] version = "1.12.0" [dev-dependencies.stop-words] version = "0.8.0" [features] all = [ "tf_idf", "co_occurrence", "rake", "text_rank", "yake", ] co_occurrence = [] default = [ "tf_idf", "rake", "text_rank", ] parallel = ["rayon"] rake = [] text_rank = [] tf_idf = [] yake = []