[package]
edition = "2024"
rust-version = "1.95.0"
name = "nu-derive-value"
version = "0.115.0"
authors = ["The Nushell Project Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros implementation of #[derive(FromValue, IntoValue)]"
readme = false
license = "MIT"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-derive-value"
[lib]
name = "nu_derive_value"
path = "src/lib.rs"
proc-macro = true
[dependencies.heck]
version = "0.5.0"
[dependencies.proc-macro-error2]
version = "2.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0.45"
[dependencies.syn]
version = "3.0.2"
[lints.clippy]
collapsible_match = "allow"
filter_map_identity = "allow"
format_push_string = "warn"
needless_raw_strings = "warn"
result_large_err = "allow"
unchecked_time_subtraction = "deny"
unwrap_used = "deny"
used_underscore_binding = "warn"
[lints.rust]
warnings = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(ci)"]