[package] name = "pithy" version = "0.1.7" edition = "2021" authors = ["ckoshka"] license = "MIT" description = "Ultra-fast, spookily accurate text summarizer that works on any language" readme = "README.md" homepage = "https://github.com/ckoshka/pithy" repository = "https://github.com/ckoshka/pithy" keywords = ["summarize", "summarization", "text", "nlp", "cli"] categories = ["command-line-utilities", "text-processing"] include = ["/src/lib.rs", "README.md", "Cargo.lock", "Cargo.toml", "/bin/pithy.rs"] [toolchain] channel = "nightly-2021-07-29" [dependencies] rayon = "1.5.1" indicatif = "0.16.2" colored = "2" #cap = "*" #wasm-bindgen = "0.2.50" #serde = { version = "1.0", features = ["derive"] } #console_error_panic_hook = "*" #wasm-bindgen-rayon = { version = "1.0", features = ["no-bundler"] } #serde_json = "1.0" [lib] name = "pithy" path = "src/lib.rs" crate-type = ["cdylib", "rlib"] [[bin]] name = "pithy-cli" path = "bin/pithy.rs"