-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (26 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
34 lines (26 loc) · 1.04 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
[package]
name = "cortex-keyring-store"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Keyring-based credential storage for Cortex CLI"
[lints]
workspace = true
[features]
default = []
# Use linux-native backend (libsecret/D-Bus) - for glibc builds
linux-native = ["keyring/linux-native"]
[dependencies]
tracing = { workspace = true }
thiserror = { workspace = true }
# Keyring with conditional features based on target environment
# For musl builds, we use linux-keyutils which doesn't require D-Bus
[target.'cfg(all(target_os = "linux", target_env = "musl"))'.dependencies]
keyring = { workspace = true, features = ["linux-native"] }
[target.'cfg(all(target_os = "linux", not(target_env = "musl")))'.dependencies]
keyring = { workspace = true, features = ["linux-native"] }
[target.'cfg(target_os = "macos")'.dependencies]
keyring = { workspace = true, features = ["apple-native"] }
[target.'cfg(target_os = "windows")'.dependencies]
keyring = { workspace = true, features = ["windows-native"] }
[dev-dependencies]