1[package]
2name = "tangled-config"
3version = "0.1.0"
4edition = "2021"
5description = "Configuration and session management for Tangled CLI"
6license = "MIT OR Apache-2.0"
7
8[dependencies]
9anyhow = { workspace = true }
10dirs = { workspace = true }
11serde = { workspace = true, features = ["derive"] }
12serde_json = { workspace = true }
13toml = { workspace = true }
14chrono = { workspace = true }
15
16[target.'cfg(target_os = "macos")'.dependencies]
17keyring = { workspace = true, features = ["apple-native"] }
18
19[target.'cfg(target_os = "linux")'.dependencies]
20keyring = { workspace = true, features = ["sync-secret-service", "vendored"] }
21
22[target.'cfg(target_os = "windows")'.dependencies]
23keyring = { workspace = true, features = ["windows-native"] }
24