nushell/crates/nu_plugin_to_bson/Cargo.toml

24 lines
574 B
TOML
Raw Normal View History

[package]
authors = ["The Nu Project Contributors"]
description = "A converter plugin to the bson format for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_to_bson"
2021-10-26 21:36:41 +02:00
version = "0.39.0"
[lib]
doctest = false
[dependencies]
bson = "0.14.1"
2021-10-26 21:36:41 +02:00
nu-errors = { path="../nu-errors", version = "0.39.0" }
nu-plugin = { path="../nu-plugin", version = "0.39.0" }
nu-protocol = { path="../nu-protocol", version = "0.39.0" }
nu-source = { path="../nu-source", version = "0.39.0" }
2021-02-05 21:54:54 +01:00
num-traits = "0.2.14"
2021-05-13 11:49:46 +02:00
[features]
dataframe = ["nu-protocol/dataframe"]
[build-dependencies]