mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
4f20c370f9
Bumps [scraper](https://github.com/causal-agent/scraper) from 0.21.0 to 0.22.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/causal-agent/scraper/releases">scraper's releases</a>.</em></p> <blockquote> <h2>v0.22.0</h2> <h2>What's Changed</h2> <ul> <li>Make current nightly version of Clippy happy. by <a href="https://github.com/adamreichold"><code>@adamreichold</code></a> in <a href="https://redirect.github.com/rust-scraper/scraper/pull/220">rust-scraper/scraper#220</a></li> <li>RFC: Drop hash table for per-element attributes for more compact sorted vector by <a href="https://github.com/adamreichold"><code>@adamreichold</code></a> in <a href="https://redirect.github.com/rust-scraper/scraper/pull/221">rust-scraper/scraper#221</a></li> <li>Bump ego-tree to version 0.10.0 by <a href="https://github.com/cfvescovo"><code>@cfvescovo</code></a> in <a href="https://redirect.github.com/rust-scraper/scraper/pull/222">rust-scraper/scraper#222</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rust-scraper/scraper/compare/v0.21.0...v0.22.0">https://github.com/rust-scraper/scraper/compare/v0.21.0...v0.22.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="dcf5e0c781
"><code>dcf5e0c</code></a> Version 0.22.0</li> <li><a href="932ed03849
"><code>932ed03</code></a> Merge pull request <a href="https://redirect.github.com/causal-agent/scraper/issues/222">#222</a> from rust-scraper/bump-ego-tree</li> <li><a href="483ecab721
"><code>483ecab</code></a> Bump ego-tree to version 0.10.0</li> <li><a href="26f04ed47c
"><code>26f04ed</code></a> Merge pull request <a href="https://redirect.github.com/causal-agent/scraper/issues/221">#221</a> from rust-scraper/sorted-vec-instead-of-hash-table</li> <li><a href="ee66ee8d23
"><code>ee66ee8</code></a> Drop hash table for per-element attributes for more compact sorted vector.</li> <li><a href="8d3e74bf36
"><code>8d3e74b</code></a> Merge pull request <a href="https://redirect.github.com/causal-agent/scraper/issues/220">#220</a> from rust-scraper/make-clippy-happy</li> <li><a href="47cc9de953
"><code>47cc9de</code></a> Make current nightly version of Clippy happy.</li> <li>See full diff in <a href="https://github.com/causal-agent/scraper/compare/v0.21.0...v0.22.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=scraper&package-manager=cargo&previous-version=0.21.0&new-version=0.22.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
No EOL
728 B
TOML
28 lines
No EOL
728 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "A Nushell plugin to query JSON, XML, and various web data"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_query"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu_plugin_query"
|
|
version = "0.100.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_query"
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.100.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.100.1" }
|
|
|
|
gjson = "0.8"
|
|
scraper = { default-features = false, version = "0.22" }
|
|
sxd-document = "0.3"
|
|
sxd-xpath = "0.4"
|
|
webpage = { version = "2.0.1", features = ["serde"] }
|
|
serde_json.workspace = true
|
|
serde.workspace = true |