From dd77942e1987c7f7a41618c25833ccf4363f753d Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Tue, 24 Dec 2019 19:25:32 +0300 Subject: [PATCH] chore: remove pub from envvalue --- itconfig/src/lib.rs | 2 +- itconfig_tests/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/itconfig/src/lib.rs b/itconfig/src/lib.rs index fc4dec7..bcf3df8 100644 --- a/itconfig/src/lib.rs +++ b/itconfig/src/lib.rs @@ -39,7 +39,7 @@ macro_rules! __impl_from_for_numbers { #[derive(Debug)] #[doc(hidden)] -pub struct EnvValue(String); +struct EnvValue(String); impl EnvValue { pub fn new(string: String) -> Self { diff --git a/itconfig_tests/Cargo.toml b/itconfig_tests/Cargo.toml index f9c7846..6cb338f 100644 --- a/itconfig_tests/Cargo.toml +++ b/itconfig_tests/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.0" authors = ["Dmitriy Pleshevskiy "] edition = "2018" license = "MIT" +publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html