nushell/crates/nu-serde/Cargo.toml

20 lines
563 B
TOML
Raw Normal View History

[package]
name = "nu-serde"
2021-08-03 10:01:09 +02:00
version = "0.35.0"
edition = "2018"
authors = ["The Nu Project Contributors"]
description = "Turn any value into a nu-protocol::Value with serde"
license = "MIT"
repository = "https://github.com/nushell/nushell"
documentation = "https://docs.rs/nu-serde"
[dependencies]
bigdecimal = { package = "bigdecimal-rs", version = "0.2.1", features = ["serde"] }
2021-08-03 10:01:09 +02:00
nu-protocol = { version = "0.35.0", path = "../nu-protocol" }
nu-source = { version = "0.35.0", path = "../nu-source" }
serde = "1"
thiserror = "1"
[dev-dependencies]
insta = "1"