mirror of
https://github.com/nushell/nushell.git
synced 2024-11-15 04:54:46 +01:00
24 lines
873 B
TOML
24 lines
873 B
TOML
|
[package]
|
||
|
name = "nu-plugin"
|
||
|
version = "0.7.0"
|
||
|
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
|
||
|
edition = "2018"
|
||
|
description = "Nushell Plugin"
|
||
|
license = "MIT"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
|
||
|
nu-source = { path = "../nu-source", version = "0.7.0" }
|
||
|
nu-errors = { path = "../nu-errors", version = "0.7.0" }
|
||
|
nu-value-ext = { path = "../nu-value-ext", version = "0.7.0" }
|
||
|
|
||
|
indexmap = { version = "1.3.0", features = ["serde-1"] }
|
||
|
serde = { version = "1.0.103", features = ["derive"] }
|
||
|
num-bigint = { version = "0.2.3", features = ["serde"] }
|
||
|
serde_json = "1.0.44"
|
||
|
|
||
|
[build-dependencies]
|
||
|
nu-build = { version = "0.7.0", path = "../nu-build" }
|