-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 780 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 780 Bytes
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
[package]
name = "op-cache"
version = "0.2.0"
edition = "2021"
description = "A fast caching proxy for 1Password CLI op read commands"
license = "MIT"
[dependencies]
# Single-threaded runtime (rt, not rt-multi-thread) for fast CLI startup
tokio = { version = "1", features = ["rt", "net", "io-util", "sync", "macros", "process", "signal", "time"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
rmp-serde = "1"
serde_yaml = "0.9"
moka = { version = "0.12", features = ["future"] }
thiserror = "2"
anyhow = "1"
fork = "0.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
directories = "5"
libc = "0.2"
blake3 = "1"
futures = "0.3"
[profile.release]
lto = true
codegen-units = 1
strip = true