nushell/crates/nu_plugin_xpath/Cargo.toml

25 lines
654 B
TOML
Raw Normal View History

2020-10-13 01:18:39 +02:00
[package]
authors = ["The Nu Project Contributors"]
description = "Traverses xml"
edition = "2018"
license = "MIT"
name = "nu_plugin_xpath"
2021-06-23 09:57:41 +02:00
version = "0.33.1"
2020-10-13 01:18:39 +02:00
[lib]
doctest = false
[dependencies]
2021-06-23 09:57:41 +02:00
nu-errors = { version="0.33.1", path="../nu-errors" }
nu-plugin = { path="../nu-plugin", version="0.33.1" }
nu-protocol = { version="0.33.1", path="../nu-protocol" }
nu-source = { version="0.33.1", path="../nu-source" }
2020-10-13 01:18:39 +02:00
2021-06-22 07:22:33 +02:00
bigdecimal = { version="0.2.0", features=["serde"] }
indexmap = { version="1.6.1", features=["serde-1"] }
2020-10-13 19:19:09 +02:00
sxd-document = "0.3.2"
sxd-xpath = "0.4.2"
2020-10-13 01:18:39 +02:00
[dev-dependencies]
2021-06-23 09:57:41 +02:00
nu-test-support = { path="../nu-test-support", version="0.33.1" }