-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (47 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (47 loc) · 1.28 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
[package]
name = "summars"
version = "6.2.2"
edition = "2024"
rust-version = "1.85.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
hold = ["dep:tonic", "dep:prost", "dep:tonic-prost"]
default = ["hold"]
[dependencies]
anyhow = "1"
log = { version = "0.4", features = ['std'] }
log-panics = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["fs", "sync"] }
cln-rpc = "0.6"
# cln-rpc = { path = "../lightning/cln-rpc/", version = "^0.6" }
cln-plugin = "0.6"
# cln-plugin = { path = "../lightning/plugins/", version = "^0.6" }
tabled = "0.20"
fixed_decimal = "0.7"
icu_decimal = "2"
icu_locale = "2"
sys-locale = "0.3"
icu_datetime = "2"
icu_calendar = "2"
icu_time = "2"
chrono = "0.4"
parking_lot = "0.12"
strum = { version = "0.28", features = ["derive"] }
tonic = { version = "0.14", optional = true, default-features = false, features = [
"codegen",
"transport",
"tls-ring",
] }
prost = { version = "0.14", optional = true }
tonic-prost = { version = "0.14", optional = true }
lightning-invoice = "0.34.0"
[build-dependencies]
tonic-prost-build = "0.14"
[profile.optimized]
inherits = "release"
strip = "debuginfo"
codegen-units = 1
lto = "fat"
debug = false