-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 989 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 989 Bytes
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
[package]
name = "sling"
version = "4.2.1"
edition = "2024"
rust-version = "1.85.0"
[dependencies]
anyhow = "1.0"
bytes = "1"
log = { version = "0.4", features = ['std'] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["fs", "sync", "rt-multi-thread"] }
cln-rpc = "0.6"
# cln-rpc = { path = "../lightning/cln-rpc/", version = "^0.6" }
#cln-rpc = { git = "https://github.com/ElementsProject/lightning.git", tag = "v25.05" }
cln-plugin = "0.6"
# cln-plugin = { path = "../lightning/plugins/", version = "^0.6" }
#cln-plugin = { git = "https://github.com/ElementsProject/lightning.git", tag = "v25.05" }
tabled = "0.20"
num-format = "0.4"
chrono = { version = "0.4", default-features = false, features = [
"std",
"clock",
] }
rand = "0.10"
parking_lot = "0.12"
bitcoin = "0.32"
log-panics = "2"
mimalloc = "0.1"
[profile.optimized]
inherits = "release"
strip = "debuginfo"
codegen-units = 1
lto = "fat"
debug = false