forked from extern/nushell
38 lines
995 B
TOML
38 lines
995 B
TOML
[package]
|
|
name = "nu-protocol"
|
|
version = "0.1.0"
|
|
authors = ["Yehuda Katz <wycats@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
nu-source = { path = "../nu-source" }
|
|
nu-errors = { path = "../nu-errors" }
|
|
|
|
serde = { version = "1.0.102", features = ["derive"] }
|
|
indexmap = { version = "1.3.0", features = ["serde-1"] }
|
|
num-bigint = { version = "0.2.3", features = ["serde"] }
|
|
bigdecimal = { version = "0.1.0", features = ["serde"] }
|
|
chrono = { version = "0.4.9", features = ["serde"] }
|
|
num-traits = "0.2.8"
|
|
serde_bytes = "0.11.2"
|
|
getset = "0.0.9"
|
|
derive-new = "0.5.8"
|
|
ansi_term = "0.12.1"
|
|
language-reporting = "0.4.0"
|
|
nom = "5.0.1"
|
|
nom_locate = "1.0.0"
|
|
nom-tracable = "0.4.1"
|
|
typetag = "0.1.4"
|
|
query_interface = "0.3.5"
|
|
|
|
# implement conversions
|
|
subprocess = "0.1.18"
|
|
serde_yaml = "0.8"
|
|
toml = "0.5.5"
|
|
serde_json = "1.0.41"
|
|
|
|
[build-dependencies]
|
|
nu-build = { version = "0.1.0", path = "../nu-build" }
|