nushell/crates/nu_plugin_xpath/Cargo.toml

25 lines
668 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-01-11 19:50:53 +01:00
version = "0.25.2"
2020-10-13 01:18:39 +02:00
[lib]
doctest = false
[dependencies]
2021-01-11 19:50:53 +01:00
nu-errors = {version = "0.25.2", path = "../nu-errors"}
nu-plugin = {path = "../nu-plugin", version = "0.25.2"}
nu-protocol = {version = "0.25.2", path = "../nu-protocol"}
nu-source = {version = "0.25.2", path = "../nu-source"}
2020-10-13 01:18:39 +02:00
bigdecimal = {version = "0.2.0", features = ["serde"]}
indexmap = {version = "1.6.0", 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-01-11 19:50:53 +01:00
nu-test-support = {path = "../nu-test-support", version = "0.25.2"}