2
0
Fork 0
mirror of https://github.com/uutils/coreutils synced 2024-12-23 19:43:15 +00:00
coreutils/src/base64/Cargo.toml
Michael Gehring 9d8abbcb06 Basic Cargo build
Builds the uutils multicall binary containing all utils (except stdbuf)
by default. To only build a subset
    `cargo --no-default-features --features <utils>`
can be used.

Whats missing is building the standalone binaries and a mechanism to
automatically disable the build of unix only utils on windows.
2015-08-28 21:12:30 +02:00

14 lines
163 B
TOML

[package]
name = "base64"
version = "0.0.1"
authors = []
[lib]
name = "base64"
path = "base64.rs"
[dependencies]
getopts = "*"
libc = "*"
rustc-serialize = "*"