-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (75 loc) · 2.38 KB
/
Cargo.toml
File metadata and controls
86 lines (75 loc) · 2.38 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
[workspace]
resolver = "2"
members = ["app", "cli", "integration_tests", "lib", "rpc-api"]
[workspace.package]
authors = ["Ash Manning <ash@layertwolabs.com>"]
edition = "2024"
license-file = "LICENSE.txt"
publish = false
version = "0.14.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"
fallible-iterator = "0.3.0"
fraction = "0.14.0"
futures = { version = "0.3.30", default-features = false }
hex = "0.4.3"
http = "1.2.0"
itertools = "0.14.0"
jsonrpsee = { version = "0.25.1", features = ["tracing"] }
parking_lot = "0.12.1"
prost = "0.14.3"
semver = "1.0.2"
serde = "1.0.179"
serde_json = "1.0.113"
serde_with = { version = "3.4.0", default-features = false }
strum = { version = "0.27.2", default-features = false }
thiserror = "=2.0.16"
tiny-bip39 = "2.0.0"
tokio = { version = "1.48.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
git = "https://github.com/LayerTwo-Labs/bip300301_enforcer"
rev = "9c3eb0bdcb5b9a458e6f92cafb8bdbf76a860f74"
[workspace.dependencies.bip300301_enforcer_integration_tests]
default-features = false
git = "https://github.com/LayerTwo-Labs/bip300301_enforcer"
rev = "9c3eb0bdcb5b9a458e6f92cafb8bdbf76a860f74"
[workspace.dependencies.l2l-openapi]
git = "https://github.com/Ash-L2L/l2l-openapi"
rev = "5f8fb2237c95725731d5fb10542098303d82e215"
[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"