mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
fb26109049
It's palindromic!
24 lines
No EOL
634 B
TOML
24 lines
No EOL
634 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Macros implementation of #[derive(FromValue, IntoValue)]"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-derive-value"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-derive-value"
|
|
version = "0.101.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
# we can only use exposed macros in doctests really,
|
|
# so we cannot test anything useful in a doctest
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true }
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
proc-macro-error = { workspace = true }
|
|
heck = { workspace = true } |