-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (41 loc) · 1.21 KB
/
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
37
38
39
40
41
42
43
44
45
46
[package]
name = "nur"
description = "nur - a taskrunner based on nu shell"
version = "0.12.1"
rust-version = "1.80.1"
edition = "2021"
license = "MIT"
homepage = "https://nur-taskrunner.github.io/docs/"
repository = "https://github.com/nur-taskrunner/nur"
readme = "README.md"
authors = ["David Danier <[email protected]>"]
keywords = ["nu", "taskrunner", "development", "command-line", "utility"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
nu-cli = "0.100.0"
nu-cmd-base = "0.100.0"
nu-cmd-extra = "0.100.0"
nu-cmd-lang = "0.100.0"
nu-command = "0.100.0"
nu-engine = "0.100.0"
nu-explore = "0.100.0"
nu-parser = "0.100.0"
nu-protocol = "0.100.0"
nu-std = "0.100.0"
nu-utils = "0.100.0"
thiserror = "1.0.59"
miette = { version = "7.2", features = ["fancy-no-backtrace", "fancy"] }
nu-ansi-term = "0.50.1"
nu-path = "0.100.0"
[target.'cfg(not(target_os = "windows"))'.dependencies]
openssl = { version = "0.10", features = ["vendored"], optional = true }
[features]
default = []
static-link-openssl = ["dep:openssl", "nu-cmd-lang/static-link-openssl"]
debug = []
[dev-dependencies]
tempfile = "3.10.1"
[profile.release]
opt-level = "s" # Optimize for size
strip = "debuginfo"
lto = "thin"