2023-06-07 18:13:52 +02:00
|
|
|
[package]
|
|
|
|
name = "json2env"
|
2024-12-19 11:42:28 +01:00
|
|
|
version = "0.3.1"
|
2023-06-07 18:13:52 +02:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Marcello Lamonaca <marcello@lamonaca.eu>"]
|
|
|
|
description = "JSON to Env Var converter"
|
2023-06-28 23:41:47 +02:00
|
|
|
repository = "https://github.com/m-lamonaca/json-to-env"
|
|
|
|
license = "MIT"
|
2023-06-07 18:13:52 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-12 17:51:45 +01:00
|
|
|
clap = { version = "4.5.0", features = ["derive", "color"] }
|
2023-06-19 18:08:00 +02:00
|
|
|
serde_json = "1.0.97"
|
2023-06-28 23:41:47 +02:00
|
|
|
|
|
|
|
# The profile that 'cargo dist' will build with
|
|
|
|
[profile.dist]
|
|
|
|
inherits = "release"
|
|
|
|
lto = "thin"
|