forked from LayerTwo-Labs/plain-bitassets
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
107 lines (94 loc) · 3.1 KB
/
Copy pathCargo.toml
File metadata and controls
107 lines (94 loc) · 3.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
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
[workspace]
exclude = ["bip300301_enforcer"]
members = ["app", "cli", "integration_tests", "lib", "rpc-api"]
resolver = "2"
[workspace.package]
authors = ["Ash Manning <ash@layertwolabs.com>",
"Marc Platt <plattmarc@proton.me>",
]
edition = "2024"
license-file = "LICENSE.txt"
publish = false
version = "0.18.0"
[workspace.dependencies]
anyhow = "1.0.72"
bincode = "1.3.3"
bitcoin = "0.32.5"
blake3 = "1.4.1"
borsh = "1.3.1"
clap = "4.5.4"
const-hex = "1.19.1"
curve25519-dalek = { version = "5", default-features = false }
fallible-iterator = "0.3.0"
fraction = "0.14.0"
futures = { version = "0.3.30", default-features = false }
hickory-resolver = { version = "0.26", default-features = false }
http = "1.2.0"
itertools = "0.14.0"
jsonrpsee = { version = "0.26.0", features = ["tracing"] }
parking_lot = "0.12.1"
prost = "0.14.3"
# needs to line up with version required by frost-core
rand = { version = "0.10", default-features = false }
semver = "1.0.2"
regex = "1.0"
serde = "1.0.179"
serde_json = "1.0.113"
serde_path_to_error = "0.1.20"
serde_with = { version = "3.4.0", default-features = false }
strum = { version = "0.27.2", default-features = false }
thiserror = "2.0.18"
tiny-bip39 = "2.0.0"
tokio = { version = "1.50.0", default-features = false }
tokio-util = "0.7.18"
tonic = "0.14.3"
tracing = "0.1.40"
tracing-subscriber = "0.3.20"
url = "2.5.4"
utoipa = { version = "5.2.0", 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 = "caa8c1c248aca1827b57007dcfcd8ff70d607e8e"
[workspace.dependencies.libes]
version = "0.9.1"
features = ["AES256-GCM", "ECIES-MAC", "HMAC-SHA256", "x25519"]
[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"