2025-10-27 12:10:11 -07:00
|
|
|
[package]
|
|
|
|
|
name = "codex-keyring-store"
|
2025-11-24 12:22:18 -08:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
2025-10-27 12:10:11 -07:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-11-16 23:07:34 -06:00
|
|
|
keyring = { workspace = true, features = ["crypto-rust"] }
|
2025-10-27 12:10:11 -07:00
|
|
|
tracing = { workspace = true }
|
2025-11-16 23:07:34 -06:00
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
|
keyring = { workspace = true, features = ["linux-native-async-persistent"] }
|
|
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
|
keyring = { workspace = true, features = ["apple-native"] }
|
|
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
|
|
|
keyring = { workspace = true, features = ["windows-native"] }
|
|
|
|
|
|
|
|
|
|
[target.'cfg(any(target_os = "freebsd", target_os = "openbsd"))'.dependencies]
|
|
|
|
|
keyring = { workspace = true, features = ["sync-secret-service"] }
|