envio 0.5.0

Envio is a command-line tool that simplifies the management of environment variables across multiple profiles. It allows users to easily switch between different configurations and apply them to their current environment. Envio also encrypts sensitive environment variable values to ensure secure storage and transmission
1
2
3
4
5
6
7
8
9
10
[target.x86_64-unknown-linux-gnu]
pre-build = ["export DEBIAN_FRONTEND=noninteractive && apt-get update -y && apt-get install -y software-properties-common && add-apt-repository \"deb http://archive.ubuntu.com/ubuntu/ focal main universe\" && apt-get update -y && apt-get install -y libgpgme-dev && apt-get install -y libgpg-error-dev"]

[target.aarch64-unknown-linux-gnu]
pre-build = ["dpkg --add-architecture arm64 && export DEBIAN_FRONTEND=noninteractive && apt-get update -y && apt-get install -y software-properties-common && add-apt-repository \"deb http://archive.ubuntu.com/ubuntu/ focal main universe\" && apt-get update -y", "apt install -y libgpgme11-dev:arm64 libassuan-dev:arm64 libgpg-error-dev:arm64",]

[target.i686-unknown-linux-gnu]
pre-build = ["dpkg --add-architecture i386 && export DEBIAN_FRONTEND=noninteractive && apt-get update -y && apt-get install -y software-properties-common && add-apt-repository \"deb http://archive.ubuntu.com/ubuntu/ focal main universe\" && apt-get update -y && apt-get install -y libgpgme-dev:i386 && apt-get install -y libgpg-error-dev:i386"]