forked from BoltzExchange/boltz-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
55 lines (52 loc) · 1.1 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
[workspace]
resolver = "3"
members = ["boltz-core", "boltzr", "boltzr-cli"]
exclude = ["hold"]
[workspace.package]
version = "3.12.1"
license = "AGPL-3"
authors = ["michael1011"]
edition = "2024"
[profile.release]
opt-level = 2
lto = true
codegen-units = 1
panic = "abort"
[workspace.dependencies]
alloy = { version = "1.5.2", features = [
"reqwest",
"sol-types",
"serde",
"eip712",
"signer-local",
"signer-mnemonic",
"providers",
"transports",
"contract",
"json",
"provider-ws",
"json-rpc",
] }
anyhow = "1.0.100"
base64 = "0.22.1"
bitcoin = { version = "0.32.8", features = ["rand-std"] }
bitcoin_hashes = "0.19.0"
clap = { version = "4.5.56", features = ["derive"] }
elements = "0.26.1"
rand = "0.8.5"
reqwest = { version = "0.13.1", features = ["json"] }
rstest = "0.26.1"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serial_test = "3.3.1"
tokio = { version = "1.49.0", features = [
"rt-multi-thread",
"macros",
"process",
"net",
] }
tonic = { version = "0.14.3", features = ["tls-ring"] }
tonic-prost-build = "0.14.3"
tonic-prost = "0.14.3"
prost = "0.14.3"
dirs = "6.0.0"