json_env 1.0.2

`json_env` loads an environment variables from a file called `.env.json` in the current directory and starts a subprocess with them.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "json_env"
version = "1.0.2"
edition = "2021"
license = "Apache-2.0"
license-file = "LICENSE"
description ="`json_env` loads an environment variables from a file called `.env.json` in the current directory and starts a subprocess with them."
homepage = "https://github.com/brodo/json_env"
repository = "https://github.com/brodo/json_env.git"
readme = "Readme.md"
categories = ["command-line-utilities", "development-tools"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = "1.0"
serde_json = "1.0"
anyhow = "1.0.62"