-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (45 loc) · 1.09 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
47
48
49
50
51
52
53
[package]
name = "fjp"
# Remebmer to change version in meson.build and macros/Cargo.toml too.
version = "0.4.0-dev"
description = "A handy command line program to work fast and straightforward with firejail profiles."
authors = ["rusty-snake"]
edition = "2021"
rust-version = "1.57"
readme = "README.md"
homepage = "https://rusty-snake.github.io/fjp"
repository = "https://github.com/rusty-snake/fjp"
license = "GPL-3.0-or-later"
build = "build.rs"
categories = ["command-line-utilities"]
keywords = ["firejail"]
[features]
default = []
full = ["color-backtrace"]
[dependencies]
anyhow = "1.0"
bitflags = "1.3"
lazy_static = "1"
libc = "0.2"
log = "0.4"
nix = "0.25"
termcolor = "1.1"
thiserror = "1.0"
[dependencies.clap]
version = "3"
features = [ "derive", "wrap_help" ]
[dependencies.env_logger]
version = "0.9"
default-features = false
features = ["termcolor", "atty"]
[dependencies.color-backtrace]
version = "0.5"
optional = true
[dependencies.macros]
path = "macros"
[build-dependencies]
clap_complete = "3"
[build-dependencies.clap]
version = "3"
default-features = false
features = [ "derive" ]