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