nushell/crates/nu-protocol/Cargo.toml

41 lines
1023 B
TOML
Raw Normal View History

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