mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
4ddc35cdad
# Description This is a followup to #12043 that moves more dependency versions to workspace dependencies. # User-Facing Changes N/A # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib`
17 lines
552 B
TOML
17 lines
552 B
TOML
[package]
|
|
name = "nu_plugin_custom_values"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_custom_values"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[[bin]]
|
|
name = "nu_plugin_custom_values"
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.91.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.91.1", features = ["plugin"] }
|
|
serde = { workspace = true, default-features = false }
|
|
typetag = "0.2"
|