2025-06-26 23:20:57 +01:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "nu_plugin_tera"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Jesús Pérex <jpl@jesusperez.com>"]
|
|
|
|
edition = "2024"
|
|
|
|
description = "a nushell plugin called tera"
|
|
|
|
repository = "https://github.com/JesusPerez/nu_plugin_tera"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# for local development, you can use a path dependency
|
2025-09-20 15:49:11 +01:00
|
|
|
nu-plugin = { version = "0.107.1", path = "../nushell/crates/nu-plugin" }
|
|
|
|
nu-protocol = { version = "0.107.1", path = "../nushell/crates/nu-protocol", features = ["plugin"] }
|
2025-06-26 23:20:57 +01:00
|
|
|
#nu-plugin = "0.104.0"
|
2025-09-20 15:49:11 +01:00
|
|
|
#nu-protocol = { version = "0.107.1", version = "0.107.1", features = ["plugin"] }
|
|
|
|
tera = "1.20"
|
|
|
|
serde_json = "1.0"
|
2025-06-26 23:20:57 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-09-20 15:49:11 +01:00
|
|
|
nu-plugin-test-support = { version = "0.107.1", path = "../nushell/crates/nu-plugin-test-support" }
|
|
|
|
#nu-plugin-test-support = { version = "0.107.1", version = "0.107.1" }
|