-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (29 loc) · 1002 Bytes
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "nu_plugin_emoji"
version = "0.10.0"
authors = ["Darren Schroeder"]
edition = "2021"
repository = "https://github.com/fdncred/nu_plugin_emoji"
description = "a nushell plugin called emoji"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# nushell dependencies
nu-plugin = "0.101.0"
nu-protocol = "0.101.0"
nu-path = "0.101.0"
# for local development, you can use a path dependency
# nu-plugin = { path = "../nushell/crates/nu-plugin", version = "0.98.0" }
# nu-protocol = { path = "../nushell/crates/nu-protocol", version = "0.98.0" }
# nu-path = { path = "../nushell/crates/nu-path", version = "0.98.0" }
emojis = "0.6.4"
itertools = "0.13.0"
[dev-dependencies]
nu-plugin-test-support = "0.101.0"
# nu-plugin-test-support = { path = "../nushell/crates/nu-plugin-test-support" }
[profile.release]
opt-level = "s" # Optimize for size
strip = "debuginfo"
lto = "thin"
[profile.dev]
opt-level = 0