-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (39 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
45 lines (39 loc) · 1.12 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
40
41
42
43
44
45
[package]
name = "op-fast"
version = "0.1.1"
edition = "2024"
description = "1Password CLI proxy for instant access to secrets"
homepage = "https://github.com/cometkim/op-fast"
repository = "https://github.com/cometkim/op-fast.git"
license = "MIT"
[dependencies]
anyhow = "1"
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
log = "0.4"
thiserror = "2"
keyring-core = "0.7"
which = "7"
foldhash = "0.1"
dirs-sys = "0.5"
url = "2.5"
urlencoding = "2.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
heed = "0.21"
globset = "0.4"
fancy-regex = "0.17"
lazy_static = "1"
humantime = "2"
subst = "0.3"
[target.'cfg(target_os = "linux")'.dependencies]
linux-keyutils-keyring-store = "0.2.1"
[target.'cfg(target_os = "macos")'.dependencies]
apple-native-keyring-store = { version = "0.2.2", features = ["keychain", "protected"] }
[target.'cfg(any(target_os = "freebsd", target_os = "openbsd"))'.dependencies]
dbus-secret-service-keyring-store = { version = "0.3.3", features = ["crypto-rust", "vendored"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"