nushell/crates/nu_plugin_str/Cargo.toml

25 lines
689 B
TOML
Raw Normal View History

[package]
name = "nu_plugin_str"
2020-03-31 19:25:21 +02:00
version = "0.12.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "A string manipulation plugin for Nushell"
license = "MIT"
[lib]
doctest = false
[dependencies]
2020-03-31 19:25:21 +02:00
nu-plugin = { path = "../nu-plugin", version = "0.12.0" }
nu-protocol = { path = "../nu-protocol", version = "0.12.0" }
nu-source = { path = "../nu-source", version = "0.12.0" }
nu-errors = { path = "../nu-errors", version = "0.12.0" }
nu-value-ext = { path = "../nu-value-ext", version = "0.12.0" }
2020-04-09 00:28:20 +02:00
chrono = { version = "0.4.11", features = ["serde"] }
regex = "1"
2020-04-09 00:28:20 +02:00
num-bigint = "0.2.6"
[build-dependencies]
2020-03-31 19:25:21 +02:00
nu-build = { version = "0.12.0", path = "../nu-build" }