-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
37 lines (33 loc) · 1.17 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
[package]
name = "nix-your-shell"
version = "1.4.6"
edition = "2021"
authors = ["Rebecca Turner <[email protected]>"]
description = "A `nix` and `nix-shell` wrapper for shells other than `bash`"
repository = "https://github.com/MercuryTechnologies/nix-your-shell"
license = "MIT"
keywords = ["nix", "nixos", "nix-shell", "fish"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
calm_io = "0.1.1"
camino = "1.1.4"
clap = { version = "4.3.4", features = ["derive", "wrap_help", "env"] }
miette = { version = "7.2.0", features = ["fancy"] }
minijinja = { version = "1.0.12", features = ["json"] }
shell-words = "1.1.0"
tracing = { version = "0.1.39", features = ["attributes"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "registry"] }
# generated by 'cargo dist init'
[profile.dist]
inherits = "release"
debug = true
split-debuginfo = "packed"
# See: https://github.com/crate-ci/cargo-release/blob/master/docs/reference.md
[package.metadata.release]
# Don't tag commits
tag = false
# Don't do `git push`
push = false
# Don't do `cargo publish`
publish = false