forked from nushell/nu_plugin_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (20 loc) · 837 Bytes
/
Cargo.toml
File metadata and controls
25 lines (20 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
{% if github_username != empty -%}
{% endif -%}
name = "{{ project-name }}"
version = "0.1.0"
authors = ["{{authors}}"]
edition = "2021"
description = "a nushell plugin called {{ plugin_name }}"
repository = "https://github.com/{{ github_username }}/{{ project-name }}"
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
# nu-plugin = { path = "../nushell/crates/nu-plugin" }
# nu-protocol = { path = "../nushell/crates/nu-protocol", features = ["plugin"] }
nu-plugin = "0.104.0"
nu-protocol = { version = "0.104.0", features = ["plugin"] }
[dev-dependencies]
# nu-plugin-test-support = { path = "../nushell/crates/nu-plugin-test-support" }
nu-plugin-test-support = { version = "0.104.0" }