diff --git a/src/lib.rs b/src/lib.rs index c8debfd..126a33a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -35,7 +35,6 @@ //! //! - Homepage: https://github.com/yoshuawuyts/human-panic //! - Authors: Yoshua Wuyts -//! - Repository: https://github.com/yoshuawuyts/human-panic //! //! We take privacy seriously, and do not perform any automated error collection. In order to improve the software, we rely on people to submit reports. //! @@ -64,8 +63,6 @@ pub struct Metadata { pub authors: Cow<'static, str>, /// The URL of the crate's website pub homepage: Cow<'static, str>, - /// The URL of the crate's repository - pub repository: Cow<'static, str>, } /// `human-panic` initialisation macro @@ -85,7 +82,6 @@ pub struct Metadata { /// version: env!("CARGO_PKG_VERSION").into(), /// authors: "My Company Support ".into(), /// homepage: "support.mycompany.com".into(), -/// repository: "https://git.mycompany.com/repo.git".into(), /// }); /// ``` #[macro_export] @@ -123,7 +119,6 @@ macro_rules! setup_panic { name: env!("CARGO_PKG_NAME").into(), authors: env!("CARGO_PKG_AUTHORS").replace(":", ", ").into(), homepage: env!("CARGO_PKG_HOMEPAGE").into(), - repository: option_env!("CARGO_PKG_REPOSITORY").unwrap_or("").into(), }; panic::set_hook(Box::new(move |info: &PanicInfo| { @@ -142,13 +137,8 @@ pub fn print_msg>( file_path: Option

, meta: &Metadata, ) -> IoResult<()> { - let (_version, name, authors, homepage, repository) = ( - &meta.version, - &meta.name, - &meta.authors, - &meta.homepage, - &meta.repository, - ); + let (_version, name, authors, homepage) = + (&meta.version, &meta.name, &meta.authors, &meta.homepage); let stderr = BufferWriter::stderr(ColorChoice::Auto); let mut buffer = stderr.buffer(); @@ -179,9 +169,6 @@ pub fn print_msg>( if !authors.is_empty() { writeln!(&mut buffer, "- Authors: {}", authors)?; } - if !repository.is_empty() { - writeln!(&mut buffer, "- Repository: {}", repository)?; - } writeln!( &mut buffer, "\nWe take privacy seriously, and do not perform any \ diff --git a/tests/custom-panic/src/main.rs b/tests/custom-panic/src/main.rs index 5ec0a12..006e317 100644 --- a/tests/custom-panic/src/main.rs +++ b/tests/custom-panic/src/main.rs @@ -6,7 +6,6 @@ fn main() { version: env!("CARGO_PKG_VERSION").into(), authors: "My Company Support