2020-11-22 01:37:16 +01:00
|
|
|
[package]
|
2022-03-13 19:30:27 +01:00
|
|
|
authors = ["The Nushell Project Developers", "Christian Zangl <laktak@cdak.net>"]
|
2020-11-22 01:37:16 +01:00
|
|
|
description = "Fork of serde-hjson"
|
2022-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-json"
|
2022-01-20 14:13:45 +01:00
|
|
|
edition = "2021"
|
2021-10-01 07:11:49 +02:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-json"
|
2024-05-02 00:19:20 +02:00
|
|
|
version = "0.93.1"
|
2020-11-22 01:37:16 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
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]
|
2023-08-23 22:23:27 +02:00
|
|
|
linked-hash-map = { version = "0.5", optional = true }
|
2024-03-24 00:46:02 +01:00
|
|
|
num-traits = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
2021-03-04 07:35:13 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-05-02 00:19:20 +02:00
|
|
|
# nu-path = { path="../nu-path", version = "0.93.1" }
|
2022-12-01 11:53:24 +01:00
|
|
|
# serde_json = "1.0"
|