-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
39 lines (37 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# SPDX-FileCopyrightText: 2026 Alexander R. Croft
# SPDX-License-Identifier: GPL-3.0-or-later
[package]
name = "macrun"
version = "1.0.4"
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"] }
rpassword = "7.4"
ring = "0.17"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"