2020-11-22 01:37:16 +01:00
|
|
|
[package]
|
|
|
|
authors = ["The Nu Project Contributors", "Christian Zangl <laktak@cdak.net>"]
|
|
|
|
description = "Fork of serde-hjson"
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu-json"
|
2021-10-26 21:36:41 +02:00
|
|
|
version = "0.39.0"
|
2020-11-22 01:37:16 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-03-04 07:35:13 +01:00
|
|
|
[features]
|
|
|
|
preserve_order = ["linked-hash-map", "linked-hash-map/serde_impl"]
|
|
|
|
default = ["preserve_order"]
|
|
|
|
|
2020-11-22 01:37:16 +01:00
|
|
|
[dependencies]
|
2021-03-04 07:35:13 +01:00
|
|
|
serde = "1.0"
|
2021-01-11 19:50:53 +01:00
|
|
|
num-traits = "0.2.14"
|
2020-11-22 01:37:16 +01:00
|
|
|
regex = "^1.0"
|
2021-03-04 07:35:13 +01:00
|
|
|
lazy_static = "1"
|
2021-06-22 07:22:33 +02:00
|
|
|
linked-hash-map = { version="0.5", optional=true }
|
2021-03-04 07:35:13 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-26 21:36:41 +02:00
|
|
|
nu-path = { version = "0.39.0", path="../nu-path" }
|
|
|
|
nu-test-support = { version = "0.39.0", path="../nu-test-support" }
|
2021-03-04 07:35:13 +01:00
|
|
|
serde_json = "1.0.39"
|