forked from Dshield-xyz/Dshield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
19 lines (16 loc) · 756 Bytes
/
Copy pathCargo.toml
File metadata and controls
19 lines (16 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "dshield-pool"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
# hazmat-address: used to derive a deterministic recipient identifier from the
# payout Address so the withdrawal proof can be bound to its recipient (NOT for
# signature auth). See `recipient_hash_from_address` in src/lib.rs.
soroban-sdk = { workspace = true, features = ["alloc", "hazmat-address"] }
soroban-poseidon = "26.0.0"
ultrahonk_soroban_verifier = { git = "https://github.com/yugocabrio/rs-soroban-ultrahonk", rev = "661db07200f890b1bd9a7349ed787c70a706dd12", default-features = false }
[dev-dependencies]
soroban-sdk = { workspace = true, features = ["testutils", "alloc", "hazmat-address"] }
soroban-env-host = "26.1.3"