-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
[package]
name = "zcash-htlc-builder"
version = "0.1.5"
edition = "2021"
authors = ["Okoli Evans <ebounce500@gmail.com>"]
description = "Production-ready Zcash HTLC builder for atomic swaps using transparent transactions"
license = " Apache-2.0"
repository = "https://github.com/Mist-Labs/zcash-htlc-builder"
homepage = "https://github.com/Mist-Labs/zcash-htlc-builder"
documentation = "https://docs.rs/zcash-htlc-builder"
readme = "README.md"
keywords = ["zcash", "htlc", "atomic-swap", "bitcoin", "blockchain"]
categories = ["cryptography::cryptocurrencies"]
rust-version = "1.70"
[lib]
name = "zcash_htlc_builder"
path = "src/lib.rs"
[[bin]]
name = "zcash-htlc-cli"
path = "src/bin/cli.rs"
[dependencies]
bitcoin = { version = "0.29", features = ["serde"] }
secp256k1 = { version = "0.28", features = ["rand-std", "global-context"] }
bs58 = "0.5"
bech32 = "0.11"
sha2 = "0.10"
ripemd = "0.1"
diesel = { version = "2.1", features = ["postgres", "r2d2", "chrono"] }
diesel_migrations = "2.1"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1.0"
thiserror = "1.0"
dotenv = "0.15"
rand = "0.8"
uuid = { version = "1.0", features = ["v4", "serde"] }
toml = "0.9"
[dev-dependencies]
tokio-test = "0.4"
[[example]]
name = "test_htlc_flow"
path = "sample_script/test_htlc_flow.rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]