-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (28 loc) · 842 Bytes
/
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
[package]
name = "clnrod"
version = "0.4.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
log = { version = "0.4", features = ['std'] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
parking_lot = "0.12"
pest = "2"
pest_derive = "2"
cln-rpc = "0.2"
# cln-rpc = { path="../lightning/cln-rpc/", version = "^0.1" }
cln-plugin = "0.2"
# cln-plugin = { path="../lightning/plugins/", version = "^0.1" }
reqwest = { version = "0.12", default-features = false, features = ["http2", "json","rustls-tls"] }
lettre = {version = "0.11", default-features = false, features = ["tokio1-rustls-tls","smtp-transport","builder"]}
log-panics = "2"
[dependencies.tokio]
features = ["fs","net", "rt-multi-thread"]
version = "1"
[profile.optimized]
inherits = "release"
strip = "debuginfo"
codegen-units = 1
lto = "fat"
debug = false