Skip to repository content57 lines · 1.4 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:12:24.823Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
Cargo.toml
1[package]
2name = "omega_identity"
3version = "0.1.0"
4edition.workspace = true
5publish.workspace = true
6license = "GPL-3.0-or-later"
7
8[lints]
9workspace = true
10
11[lib]
12path = "src/omega_identity.rs"
13
14[[bin]]
15name = "omega-identity"
16path = "src/bin/omega_identity.rs"
17
18[[bin]]
19name = "omega-identity-proof"
20path = "src/bin/omega_identity_proof.rs"
21
22[dependencies]
23anyhow.workspace = true
24app_identity.workspace = true
25atomic-write-file.workspace = true
26clap = { workspace = true, features = ["derive"] }
27hex.workspace = true
28nostr = { workspace = true, features = ["nip49", "nip59"] }
29paths.workspace = true
30serde.workspace = true
31serde_json.workspace = true
32sha2.workspace = true
33smol.workspace = true
34thiserror.workspace = true
35zeroize.workspace = true
36
37[target.'cfg(target_os = "macos")'.dependencies]
38keyring = { workspace = true, features = ["apple-native", "vendored"] }
39
40[target.'cfg(target_os = "linux")'.dependencies]
41keyring = { workspace = true, features = ["sync-secret-service", "vendored"] }
42
43[target.'cfg(unix)'.dependencies]
44libc.workspace = true
45
46[target.'cfg(target_os = "windows")'.dependencies]
47keyring = { workspace = true, features = ["windows-native", "vendored"] }
48windows-sys = { workspace = true, features = [
49 "Win32_Foundation",
50 "Win32_Security",
51 "Win32_Storage_FileSystem",
52 "Win32_System_Threading",
53] }
54
55[dev-dependencies]
56tempfile.workspace = true
57