2021-12-06 11:28:11 -06:00
|
|
|
[package]
|
2022-03-13 11:30:27 -07:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2021-12-06 11:28:11 -06:00
|
|
|
description = "A git status plugin for Nushell"
|
2022-08-14 15:21:20 +03:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gstat"
|
2022-01-20 05:13:45 -08:00
|
|
|
edition = "2021"
|
2021-12-06 11:28:11 -06:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu_plugin_gstat"
|
2024-04-12 15:00:43 +02:00
|
|
|
version = "0.92.3"
|
2021-12-06 11:28:11 -06:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
2023-02-12 23:22:00 +01:00
|
|
|
bench = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_gstat"
|
|
|
|
bench = false
|
2021-12-06 11:28:11 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-12 15:00:43 +02:00
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.92.3" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.92.3" }
|
2021-12-06 11:28:11 -06:00
|
|
|
|
2023-09-04 21:10:25 +00:00
|
|
|
git2 = "0.18"
|