forked from zcash/zcash-swift-wallet-sdk
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
123 lines (107 loc) · 3.91 KB
/
Copy pathCargo.toml
File metadata and controls
123 lines (107 loc) · 3.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[package]
name = "libzcashlc"
version = "2.5.1"
authors = [
"Jack Grigg <thestr4d@gmail.com>",
"Lukas Korba <lukas@tangiblecodes.com>",
"Kris Nuttycombe<kris@nutty.land>",
"Francisco Gindre",
]
license = "MIT"
edition = "2024"
rust-version = "1.90"
build = "rust/build.rs"
[dependencies]
# Zcash
orchard = { version = "=0.13.1", features = ["unstable-voting-circuits"] }
pasta_curves = "0.5"
ff = "0.13"
sapling = { package = "sapling-crypto", version = "0.7", default-features = false }
transparent = { package = "zcash_transparent", version = "0.7", default-features = false }
zcash_address = { version = "0.11" }
zcash_client_backend = { version = "0.22", features = [
"lightwalletd-tonic-tls-webpki-roots",
"non-standard-fees",
"orchard",
"pczt",
"tor",
"transparent-inputs",
"unstable",
] }
zcash_client_sqlite = { version = "0.20.2", features = ["orchard", "transparent-inputs", "unstable", "serde"] }
zcash_note_encryption = "0.4.1"
zcash_primitives = "0.27"
zcash_proofs = "0.27"
zcash_protocol = "0.8"
zcash_script = "0.4"
zip32 = "0.2"
pczt = { version = "0.6", features = ["prover"] }
# EIP-681
eip681 = "0.1.0"
# Infrastructure
prost = "0.14"
rusqlite = "0.37"
secrecy = "0.8"
rand = "0.8"
nonempty = "0.11"
# FFI
anyhow = "1.0"
ffi_helpers = "0.3"
uuid = "1.1"
bitflags = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
zeroize = "1"
# HTTP
bytes = "1"
http = "1"
http-body-util = "0.1"
# Initialization
cfg-if = "1.0"
rayon = "1.7"
# lightwalletd
tonic = "0.14"
# Logging
log-panics = "2.0"
once_cell = "1.0"
sharded-slab = "0.1"
tracing = "0.1"
tracing-subscriber = "0.3"
# Tor
fs-mistrust = "0.12"
tor-rtcompat = "0.35"
rust_decimal = { version = "1", default-features = false, features = ["c-repr"] }
# - The "static" feature is required for the "compression" default feature of arti-client.
xz2 = { version = "0.1", features = ["static"] }
# Voting
zcash_voting = { version = "0.8.1", default-features = false, features = [
"client-pir",
"client-tree-sync",
] }
zcash_keys = { version = "0.13", features = ["orchard"] }
incrementalmerkletree = { version = "0.8", default-features = false }
[dev-dependencies]
zcash_voting = { version = "0.8.1", default-features = false, features = ["test-fixtures"] }
[build-dependencies]
bindgen = "0.72"
cbindgen = "0.29"
cc = "1.0"
[lib]
name = "zcashlc"
path = "rust/src/lib.rs"
crate-type = ["staticlib"]
[profile.release]
lto = true
[patch.crates-io]
equihash = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
f4jumble = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
pczt = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_address = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_client_backend = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_client_sqlite = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_encoding = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_keys = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_primitives = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_protocol = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zcash_transparent = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }
zip321 = { git = "https://github.com/horizontalsystems/librustzcash", branch = "hs/custom-fee-expiry-sdk-compatible" }