-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
75 lines (65 loc) · 2.08 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = ["app", "cli", "integration_tests", "lib", "rpc-api"]
[workspace.package]
authors = [
"Ash Manning <ash@layertwolabs.com>",
"Nikita Chashchinskii <nikita.chashchinskii@gmail.com>",
]
edition = "2021"
license-file = "LICENSE.txt"
publish = false
version = "0.11.6"
[workspace.dependencies]
anyhow = "1.0.72"
bincode = "1.3.3"
bitcoin = "0.32.5"
clap = { version = "4.5.4" }
futures = { version = "0.3.30", default-features = false }
http = "1.2.0"
jsonrpsee = { version = "0.24.7", features = ["tracing"] }
parking_lot = "0.12.1"
prost = "0.13.3"
serde = "1.0.179"
serde_json = "1.0.113"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2.0.11"
tiny-bip39 = "2.0.0"
tokio = { version = "1.29.1", default-features = false, features = ["signal"] }
tokio-util = "0.7.10"
tonic = "0.12.3"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
utoipa = { version = "5.2.0", default-features = false }
uuid = "1.13.1"
[workspace.dependencies.bip300301_enforcer_lib]
default-features = false
git = "https://github.com/Ash-L2L/bip300301_enforcer"
rev = "42cfbe73a894186a73cadc36cc398b879fe5bee6"
[workspace.dependencies.bip300301_enforcer_integration_tests]
default-features = false
git = "https://github.com/Ash-L2L/bip300301_enforcer"
rev = "42cfbe73a894186a73cadc36cc398b879fe5bee6"
[workspace.dependencies.l2l-openapi]
git = "https://github.com/Ash-L2L/l2l-openapi"
rev = "38c42ee637d083f1cdc807b546f6930b880dcad9"
[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"
[profile.release]
# lto = "fat"