This PR is a follow-up to #5591. It allows users to choose which auth storage mode they want by using the new `cli_auth_credentials_store_mode` config.
17 lines
305 B
TOML
17 lines
305 B
TOML
[package]
|
|
edition = "2024"
|
|
name = "codex-keyring-store"
|
|
version = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
keyring = { workspace = true, features = [
|
|
"apple-native",
|
|
"crypto-rust",
|
|
"linux-native-async-persistent",
|
|
"windows-native",
|
|
] }
|
|
tracing = { workspace = true }
|