-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (44 loc) · 1.53 KB
/
Cargo.toml
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
48
49
50
[package]
name = "ssid"
version = "0.1.0"
description = "Self-sovereign identity"
keywords = ["privacy", "cypherpunk", "identity"]
categories = ["cryptography"]
readme = "README.md"
authors = ["Cypher <[email protected]>"]
homepage = "https://cyphernet.io"
repository = "https://github.com/Cyphernet-DAO/ssid"
rust-version = "1.70.0"
edition = "2021"
license = "Apache-2.0"
[lib]
[[bin]]
name = "ssid"
required-features = ["cli"]
[dependencies]
amplify = "4.5.0"
commit_verify = "0.11.0-beta.1"
strict_encoding = "2.6.1"
strict_types = "1.6.3"
ec25519 = "0.1.0"
baid58 = "0.4.4"
base85 = "2.0.0"
bp-std = { version = "0.11.0-beta.2", features = ["client-side-validation"] }
rand = "0.8.5"
clap = { version = "4.4.11", features = ["derive", "env", "wrap_help"], optional = true }
shellexpand = { version = "3.1.0", optional = true }
[features]
default = []
all = ["cli"]
cli = ["clap", "shellexpand"]
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]
[patch.crates-io]
commit_verify = { git = "https://github.com/LNP-BP/client_side_validation", branch = "v0.11" }
bp-consensus = { git = "https://github.com/BP-WG/bp-core", branch = "doubleanchors" }
bp-dbc = { git = "https://github.com/BP-WG/bp-core", branch = "doubleanchors" }
bp-seals = { git = "https://github.com/BP-WG/bp-core", branch = "doubleanchors" }
bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "doubleanchors" }
psbt = { git = "https://github.com/BP-WG/bp-std", branch = "v0.11" }
bp-std = { git = "https://github.com/BP-WG/bp-std", branch = "v0.11" }