-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 706 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
26
27
28
29
30
[package]
name = "uu_nohup"
description = "nohup ~ (uutils) run COMMAND, ignoring hangup signals"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/nohup"
version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
edition.workspace = true
readme.workspace = true
[lints]
workspace = true
[lib]
path = "src/nohup.rs"
[dependencies]
clap = { workspace = true }
libc = { workspace = true }
nix = { workspace = true, features = ["fs"] }
uucore = { workspace = true, features = ["fs"] }
thiserror = { workspace = true }
fluent = { workspace = true }
[[bin]]
name = "nohup"
path = "src/main.rs"