macrun 1.0.3

Keychain-backed local development secrets for macOS
# SPDX-FileCopyrightText: 2026 Alexander R. Croft
# SPDX-License-Identifier: GPL-3.0-or-later

[package]
name = "macrun"
version = "1.0.3"
edition = "2021"
authors = ["Alexander R. Croft"]
description = "Keychain-backed local development secrets for macOS"
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/frogfishio/macrun"
homepage = "https://github.com/frogfishio/macrun"
documentation = "https://docs.rs/macrun"
keywords = ["keychain", "secrets", "macos", "env", "vault"]
categories = ["command-line-utilities", "development-tools"]
include = [
	"src/**",
	"Cargo.toml",
	"Cargo.lock",
	"README.md",
	"LICENSE",
	"USER_GUIDE.md",
	"VERSION",
	"BUILD",
]

[dependencies]
anyhow = "1.0"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
directories = "5.0"
keyring = { version = "3.6", features = ["apple-native"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"