rexpose 1.3.1

A reverse proxy to expose TCP and UDP services behind any NAT via a public server.
1
2
3
4
5
6
7
8
9
# https://github.com/cross-rs/cross/issues/1725#issuecomment-3544700487
[target.x86_64-unknown-linux-gnu]
pre-build = [
    'apt-get update && apt-get -y upgrade',
    # Need to upgrade gcc to a version that does have a bug (because aws-lc-sys's custom build script errors with this:
    #  ### COMPILER BUG DETECTED ###
    #  Your compiler (cc) is not supported due to a memcmp related bug reported in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95189. We strongly recommend against using this compiler.
    'apt-get -y install gcc-10 && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60',
]