-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
146 lines (133 loc) · 4.12 KB
/
Copy pathCargo.toml
File metadata and controls
146 lines (133 loc) · 4.12 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[workspace]
exclude = ["bip300301_enforcer"]
members = ["app", "cli", "integration_tests", "lib", "rpc-api", "types"]
resolver = "2"
[workspace.package]
authors = [
"Ash Manning <ash@layertwolabs.com>",
"Nikita Chashchinskii <nikita.chashchinskii@gmail.com>",
]
edition = "2024"
license-file = "LICENSE.txt"
publish = false
version = "0.18.1"
[workspace.dependencies]
anyhow = "1.0.72"
async-lock = "3.4.0"
bincode = "1.3.3"
bip32ish = "0.1.1"
bitcoin = "0.32.5"
blake3 = "1.4.1"
borsh = "1.3.1"
byteorder = "1.4.3"
bytes = "1.4.0"
clap = "4.5.4"
const-hex = "1.19.1"
curve25519-dalek = { version = "5", default-features = false }
dirs = "5.0.1"
dotenvy = "0.15.7"
educe = { version = "0.6.0", default-features = false }
eframe = { version = "0.35.0", default-features = false }
error-fatality = "0.1.2"
fallible-iterator = "0.3.0"
futures = { version = "0.3.30", default-features = false }
governor = { version = "0.8.1", default-features = false }
hashlink = "0.12.1"
heed = "0.22.0"
hickory-resolver = { version = "0.26", default-features = false }
http = "1.2.0"
human-size = "0.4.3"
jsonrpsee = { version = "0.26.0", features = ["tracing"] }
libtest-mimic = "0.8.1"
merkle-cbt = "0.3.2"
mimalloc = "0.1.48"
nonempty = "0.11.0"
parking_lot = "0.12.1"
poll-promise = "0.3.0"
prost = "0.14.1"
prost-build = "0.14.1"
prost-types = "0.14.1"
protox = "0.9.0"
quinn = "0.11.6"
# needs to line up with version required by frost-core
rand = { version = "0.10", default-features = false }
rayon = "1.7.0"
rcgen = "0.13.2"
reserve-port = "2.0.1"
rustls = { version = "0.23.21", default-features = false }
semver = "1.0.25"
serde = "1.0.179"
serde_json = "1.0.113"
serde_path_to_error = "0.1.20"
serde_with = "3.4.0"
shlex = "1.3.0"
smallvec = "1.15"
sneed = "0.0.22"
strum = { version = "0.27.2", features = ["derive"] }
temp-dir = "0.2.0"
thiserror = "2.0.11"
tiny-bip39 = "2.0.0"
tokio = { version = "1.50.0", default-features = false }
tokio-stream = "0.1.15"
tokio-util = "0.7.18"
tonic = "0.14.2"
tonic-health = "0.14.2"
tonic-prost = "0.14.2"
tonic-prost-build = "0.14.2"
# needs to line up with jsonrpsee tower version...
tower = "0.5.2"
tower-http = "0.6.2"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-indicatif = "0.3.8"
tracing-subscriber = "0.3.20"
transitive = "1.0.1"
typewit = { version = "1.15", default-features = false }
utoipa = { version = "5.2.0", default-features = false }
url = { version = "2.5.4", default-features = false }
uuid = "1.13.1"
[workspace.dependencies.bip300301_enforcer_lib]
default-features = false
path = "bip300301_enforcer/lib"
[workspace.dependencies.bip300301_enforcer_integration_tests]
default-features = false
path = "bip300301_enforcer/integration_tests"
# TODO: remove once a release is published that is compatible with
# curve25519-dalek v5
[workspace.dependencies.frost-core]
default-features = false
git = "https://github.com/ZcashFoundation/frost"
rev = "0966bd1529aa062ad3b621af99e277f976b1c0f0"
# TODO: remove once a release is published that is compatible with
# curve25519-dalek v5
[workspace.dependencies.frost-ristretto255]
default-features = false
git = "https://github.com/ZcashFoundation/frost"
rev = "0966bd1529aa062ad3b621af99e277f976b1c0f0"
[workspace.dependencies.l2l-openapi]
git = "https://github.com/Ash-L2L/l2l-openapi"
rev = "a97f7923ce4b62587aebc7561d713bb2ebc89e52"
[workspace.dependencies.rustreexo]
git = "https://github.com/mit-dci/rustreexo"
rev = "6da503b598470f6e87aa9d769b94df64df7ff3ae"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
assertions_on_result_states = "allow"
let_unit_value = "allow"
print_stderr = "deny"
print_stdout = "deny"
significant_drop_in_scrutinee = "deny"
wildcard_imports = "deny"
[workspace.lints.rust]
let_underscore_drop = "deny"
# temp-dir does not leak correctly after clone
# https://gitlab.com/leonhard-llc/ops/-/issues/17
[patch.crates-io.temp-dir]
git = "https://gitlab.com/A-Manning/leonhard-llc-ops.git"
branch = "temp-dir-leak"
# Have to use a patch here. Depending directly on the fork breaks macros.
[patch.crates-io.tracing-appender]
git = "https://github.com/torkelrogstad/tokio-tracing.git"
branch = "log-rotation-size"
[profile.release]
# lto = "fat"