Browse Source

Prevent the crates from being published to a registry

This project provides binaries without any link to Rust or Cargo. It is
just normal binaries that appears to be written in Rust. Therefore, it
does not makes any sense to distribute them in a Rust-specific registry.
Furthermore, such publication would not include the man pages
installation may not respect some distribution-specific policies.
pull/5/head
Rodolphe Breard 5 years ago
parent
commit
405386e5a4
  1. 1
      acme_common/Cargo.toml
  2. 1
      acmed/Cargo.toml
  3. 1
      tacd/Cargo.toml

1
acme_common/Cargo.toml

@ -7,6 +7,7 @@ repository = "https://github.com/breard-r/libreauth"
readme = "../README.md"
license = "MIT OR Apache-2.0"
include = ["src/**/*", "Cargo.toml", "Licence_*.txt"]
publish = false
[lib]
name = "acme_common"

1
acmed/Cargo.toml

@ -10,6 +10,7 @@ readme = "../README.md"
license = "MIT OR Apache-2.0"
include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
build = "build.rs"
publish = false
[dependencies]
acme_common = { path = "../acme_common" }

1
tacd/Cargo.toml

@ -9,6 +9,7 @@ repository = "https://github.com/breard-r/acmed"
readme = "../README.md"
license = "MIT OR Apache-2.0"
include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
publish = false
[dependencies]
acme_common = { path = "../acme_common" }

Loading…
Cancel
Save