~matthiasbeyer/butido

b2552b87c0d89c862dbe3fabf8d9e00f2c74923d — Matthias Beyer 2 years ago e833100 master
Remove myself

This patch removes me (with the atos.net mail address) from the codebase, as I
quit my job at 31.12.2021.

Thus, this patch changes the human_panic setup call to refer to
science-computing ag, opensoftware, which is the team that I belong(ed) to.

My private mail address remains in the codebase (in the authors), as I still
authored the project. The atos.net mail address is removed because I am no
longer reachable under this address, though.

Christoph comes first in the authors field now, though.

Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
CC: Christoph Prokop <christoph.prokop@atos.net>
2 files changed, 3 insertions(+), 3 deletions(-)

M Cargo.toml
M src/main.rs
M Cargo.toml => Cargo.toml +2 -2
@@ 1,9 1,9 @@
[package]
name = "butido"
version = "0.3.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>",
           "Matthias Beyer <matthias.beyer@atos.net>",
authors = [
           "Christoph Prokop <christoph.prokop@atos.net>",
           "Matthias Beyer <mail@beyermatthias.de>",
          ]
edition = "2018"
license = "EPL-2.0"

M src/main.rs => src/main.rs +1 -1
@@ 90,7 90,7 @@ async fn main() -> Result<()> {
    human_panic::setup_panic!(Metadata {
        name: env!("CARGO_PKG_NAME").into(),
        version: env!("CARGO_PKG_VERSION").into(),
        authors: "Matthias Beyer <matthias.beyer@atos.net>".into(),
        authors: "science-computing ag, opensoftware <opensoftware@science-computing.de>".into(),
        homepage: "atos.net/de/deutschland/sc".into(),
    });