-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (35 loc) · 916 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
37
38
39
40
41
42
43
44
[package]
name = "in-container"
version = "1.1.0"
edition = "2018"
authors = ["Pit Kleyersburg <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Determines if it is running in a container"
homepage = "https://github.com/pitkley/in-container"
repository = "https://github.com/pitkley/in-container.git"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["container", "cli", "docker", "lxc"]
include = [
"**/*.rs",
"LICENSE-*",
]
[[bin]]
name = "in-container"
path = "src/main.rs"
required-features = ["exe"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
[dependencies.clap]
version = "3.1.18"
features = ["cargo", "derive"]
optional = true
[target.x86_64-pc-windows-gnu.dependencies]
winreg = "0.10.1"
windows-service = "0.4.0"
[target.x86_64-unknown-freebsd.dependencies]
sysctl = "0.4.4"
[features]
default = ["exe"]
exe = ["clap"]