mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 00:53:25 +00:00
27 lines
857 B
TOML
27 lines
857 B
TOML
[package]
|
|
name = "uu_hostname"
|
|
version = "0.0.3"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "hostname ~ (uutils) display or set the host name of the current host"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/hostname"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/hostname.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
libc = "0.2.42"
|
|
hostname = { version = "0.3", features = ["set"] }
|
|
uucore = { version=">=0.0.5", package="uucore", path="../../uucore", features=["wide"] }
|
|
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
|
|
winapi = { version="0.3", features=["sysinfoapi", "winsock2"] }
|
|
|
|
[[bin]]
|
|
name = "hostname"
|
|
path = "src/main.rs"
|