Skip to content

Commit

Permalink
Revert "Merge pull request #45 from mathstuf/repository-info"
Browse files Browse the repository at this point in the history
This reverts commit 62c4e0a, reversing
changes made to f4a5b23.
  • Loading branch information
spacekookie committed Mar 22, 2020
1 parent 54dfb52 commit 91411ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
17 changes: 2 additions & 15 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
//!
//! - Homepage: https://github.com/yoshuawuyts/human-panic
//! - Authors: Yoshua Wuyts <[email protected]>
//! - 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.
//!
Expand Down Expand Up @@ -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
Expand All @@ -85,7 +82,6 @@ pub struct Metadata {
/// version: env!("CARGO_PKG_VERSION").into(),
/// authors: "My Company Support <[email protected]>".into(),
/// homepage: "support.mycompany.com".into(),
/// repository: "https://git.mycompany.com/repo.git".into(),
/// });
/// ```
#[macro_export]
Expand Down Expand Up @@ -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| {
Expand All @@ -142,13 +137,8 @@ pub fn print_msg<P: AsRef<Path>>(
file_path: Option<P>,
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();
Expand Down Expand Up @@ -179,9 +169,6 @@ pub fn print_msg<P: AsRef<Path>>(
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 \
Expand Down
1 change: 0 additions & 1 deletion tests/custom-panic/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ fn main() {
version: env!("CARGO_PKG_VERSION").into(),
authors: "My Company Support <[email protected]".into(),
homepage: "support.mycompany.com".into(),
repository: "https://git.mycompany.com/repo.git".into(),
});

println!("A normal log message");
Expand Down

0 comments on commit 91411ad

Please sign in to comment.