diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2019-01-23 18:46:15 +0000 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-01-26 23:09:12 -0800 |
commit | aae8315ea3986b40844959c4ec3d7734b124ddac (patch) | |
tree | 6de01be3b895bcfacc4eb30c042e25d8c1cb212b | |
parent | 4fcdf2022df38b37365ee5d948005ac08a1f1a83 (diff) | |
download | nitrocli-aae8315ea3986b40844959c4ec3d7734b124ddac.tar.gz nitrocli-aae8315ea3986b40844959c4ec3d7734b124ddac.tar.bz2 |
Exclude CI scripts and rustmft config
The CI scripts and the rustfmt configuration are only needed when
developing. There is no point in distributing them in the package
published on crates.io, so we exclude them from packaging using the
exclude setting in Cargo.toml.
-rw-r--r-- | nitrocli/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nitrocli/Cargo.toml b/nitrocli/Cargo.toml index fe4ad7f..ace082e 100644 --- a/nitrocli/Cargo.toml +++ b/nitrocli/Cargo.toml @@ -31,6 +31,7 @@ keywords = ["nitrokey", "nitrokey-storage", "nitrokey-pro", "cli", "usb"] description = """ A command line tool for interacting with the Nitrokey Storage device. """ +exclude = ["ci/*", "rustfmt.toml"] [badges] gitlab = { repository = "d-e-s-o/nitrocli", branch = "master" } |