mirror of
https://github.com/nushell/nushell.git
synced 2025-07-09 10:57:54 +02:00
# Description I was messing around with custom types and noticed `nu-protocol` referring to a `Value::CustomValue` variant that doesn't exist. Fixed it to say `Value::Custom` instead. # User-Facing Changes Documentation mentions the correct variant of `Value` # Tests + Formatting No new tests necessary # After Submitting
nu-protocol
The nu-protocol crate holds the definitions of structs/traits that are used throughout Nushell. This gives us one way to expose them to many other crates, as well as make these definitions available to each other, without causing mutually recursive dependencies.