json-to-env/Cargo.toml

36 lines
1.1 KiB
TOML
Raw Normal View History

2023-06-07 18:13:52 +02:00
[package]
name = "json2env"
version = "0.1.0"
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]
anyhow = "1.0.71"
clap = { version = "4.4.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"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
2023-10-18 12:00:33 +02:00
cargo-dist-version = "0.3.1"
2023-06-28 23:41:47 +02:00
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
rust-toolchain-version = "1.67.1"
2023-10-18 12:00:33 +02:00
# CI backends to support
2023-06-28 23:41:47 +02:00
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
2023-10-18 12:00:33 +02:00
targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "plan"