Go to file
Wolfgang Bumiller ad8a98f7e4 parse_arguments: work with utf8 bytes and reduce indentation
We are only caring about '=' and '-' which are single-byte
codepoints, so there's no reason not to work on a byte
slice.

Also, some indentation reduction:

Transform
    if (a) {
        ...
        return A;
    }
    return B;
into
    if (!a)
        return B;
    return A;

and
    if (a)
        if (b)
            foo()
into
    if (a && b)
        return;

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2018-12-28 13:47:29 +01:00
debian use proxmox-backup as package name 2018-12-20 10:45:14 +01:00
src parse_arguments: work with utf8 bytes and reduce indentation 2018-12-28 13:47:29 +01:00
www extract version from environment 2018-12-05 14:40:45 +01:00
.gitignore add rust standard .gitignore file 2018-12-19 11:06:51 +01:00
Cargo.toml use openssl for faster hashing 2018-12-22 14:31:59 +01:00
Makefile use proxmox-backup as package name 2018-12-20 10:45:14 +01:00