-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (44 loc) · 1.96 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (44 loc) · 1.96 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
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "dig-account"
version = "0.2.0"
edition = "2021"
rust-version = "1.81"
description = "The DIG Network user Account: the fat, strictly-logical crate for everything an account does — the Account+Profile object model, unlock policy + keystore crypto, the in-process identity+money signer, per-profile key/DEK derivation, DID+dig-store mint/sign, and all wallet ops. Headless (no UI). Consumed by dig-app."
license = "GPL-2.0-only"
repository = "https://github.com/DIG-Network/dig-account"
homepage = "https://github.com/DIG-Network/dig-account"
documentation = "https://docs.rs/dig-account"
readme = "README.md"
keywords = ["dig", "account", "wallet", "identity", "custody"]
categories = ["cryptography", "authentication"]
include = ["src/**/*.rs", "tests/**/*.rs", "SPEC.md", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE*"]
[dependencies]
dig-social-profile = "0.2"
# The canonical money signer + independent spend verification live in dig-wallet-backend's `client`
# seam (LocalSigner, verify::derive_summary). Only the `client` half is pulled in — dig-account is the
# key-holding custody side, never the running engine (no tokio runtime / rusqlite / offer builders).
dig-wallet-backend = { version = "0.16", default-features = false, features = ["client"] }
dig-session = "0.5"
dig-identity = "0.5"
dig-keystore = "0.4.1"
dig-constants = "0.7"
dig-ipc-protocol = "0.3"
chia-bls = "0.26"
chia-protocol = "0.26"
chia-puzzle-types = "0.26"
chia-wallet-sdk = { version = "0.30", features = ["chip-0035"] }
clvmr = "0.14"
thiserror = "2"
async-trait = "0.1"
serde = { version = "1", features = ["derive"] }
zeroize = "1"
[dev-dependencies]
# Test-only: the INDEPENDENT BIP-39 expansion used as the reference for the account root, so a
# drift between dig-session's expansion and the standard one is caught rather than cancelling out.
bip39 = "2.0"
anyhow = "1"
hex = "0.4"
tokio = { version = "1", features = ["macros", "rt"] }
serde_json = "1"
[lints.rust]
unsafe_code = "forbid"