2020-11-22 13:37:16 +13:00
|
|
|
[package]
|
2022-03-13 11:30:27 -07:00
|
|
|
authors = ["The Nushell Project Developers", "Christian Zangl <laktak@cdak.net>"]
|
2020-11-22 13:37:16 +13:00
|
|
|
description = "Fork of serde-hjson"
|
2022-01-20 05:13:45 -08:00
|
|
|
edition = "2021"
|
2021-10-01 18:11:49 +13:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-json"
|
2022-03-27 16:18:47 +13:00
|
|
|
version = "0.60.1"
|
2020-11-22 13:37:16 +13:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-03-04 00:35:13 -06:00
|
|
|
[features]
|
|
|
|
preserve_order = ["linked-hash-map", "linked-hash-map/serde_impl"]
|
|
|
|
default = ["preserve_order"]
|
|
|
|
|
2020-11-22 13:37:16 +13:00
|
|
|
[dependencies]
|
2021-03-04 00:35:13 -06:00
|
|
|
serde = "1.0"
|
2021-01-12 07:50:53 +13:00
|
|
|
num-traits = "0.2.14"
|
2020-11-22 13:37:16 +13:00
|
|
|
regex = "^1.0"
|
2021-03-04 00:35:13 -06:00
|
|
|
lazy_static = "1"
|
2021-06-22 17:22:33 +12:00
|
|
|
linked-hash-map = { version="0.5", optional=true }
|
2021-03-04 00:35:13 -06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-27 16:18:47 +13:00
|
|
|
nu-path = { path="../nu-path", version = "0.60.1" }
|
2022-03-24 22:54:49 -07:00
|
|
|
serde_json = "1.0"
|