nushell/crates/nu-protocol/Cargo.toml

41 lines
1007 B
TOML
Raw Normal View History

[package]
authors = ["The Nu Project Contributors"]
description = "Core values and protocols for Nushell"
2020-07-05 22:12:44 +02:00
edition = "2018"
license = "MIT"
2020-07-05 22:12:44 +02:00
name = "nu-protocol"
version = "0.16.1"
[lib]
doctest = false
[dependencies]
2020-07-05 22:12:44 +02:00
nu-errors = {path = "../nu-errors", version = "0.16.1"}
nu-source = {path = "../nu-source", version = "0.16.1"}
ansi_term = "0.12.1"
2020-07-05 22:12:44 +02:00
bigdecimal = {version = "0.1.2", features = ["serde"]}
2020-05-30 22:54:47 +02:00
byte-unit = "3.1.3"
2020-07-05 22:12:44 +02:00
chrono = {version = "0.4.11", features = ["serde"]}
codespan-reporting = "0.9.5"
derive-new = "0.5.8"
getset = "0.1.1"
indexmap = {version = "1.4.0", features = ["serde-1"]}
itertools = "0.9.0"
2020-07-05 22:12:44 +02:00
log = "0.4.8"
natural = "0.5.0"
num-bigint = {version = "0.2.6", features = ["serde"]}
num-traits = "0.2.12"
query_interface = "0.3.5"
serde = {version = "1.0.114", features = ["derive"]}
serde_bytes = "0.11.5"
typetag = "0.1.5"
# implement conversions
2020-07-05 22:12:44 +02:00
serde_json = "1.0.55"
serde_yaml = "0.8"
2020-04-09 00:28:20 +02:00
toml = "0.5.6"
2019-12-02 22:14:51 +01:00
[build-dependencies]
2020-07-05 22:12:44 +02:00
nu-build = {version = "0.16.1", path = "../nu-build"}