nushell/crates/nu_plugin_selector/Cargo.toml
ahkrr 9dbb3e80fe
feat: add attribute selection to nu_plugion_selector (#3519)
This allows the user to specify for example 
selector a -t href 
to downselect based on an attribute

Co-authored-by: ahkrr <alexhk@protonmail.com>
2021-05-30 11:49:43 -05:00

21 lines
562 B
TOML

[package]
authors = ["The Nu Project Contributors"]
description = "web scraping using css selector"
edition = "2018"
license = "MIT"
name = "nu_plugin_selector"
version = "0.31.1"
[lib]
doctest = false
[dependencies]
nipper = "0.1.9"
nu-errors = { version = "0.31.1", path = "../nu-errors" }
nu-plugin = { version = "0.31.1", path = "../nu-plugin" }
nu-protocol = { version = "0.31.1", path = "../nu-protocol" }
nu-source = { version = "0.31.1", path = "../nu-source" }
[dev-dependencies]
nu-test-support = { path = "../nu-test-support", version = "0.31.1" }