json-to-env/Cargo.toml

20 lines
528 B
TOML
Raw Normal View History

2023-06-07 18:13:52 +02:00
[package]
name = "json2env"
2024-11-08 12:54:22 +01:00
version = "0.3.0"
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]
clap = { version = "4.5.0", features = ["derive", "color"] }
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"