-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (31 loc) · 1.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
[package]
name = "vitality"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
bytes = "1"
log = { version = "0.4", features = ['std'] }
# serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# bitcoincore-rpc = "0.17.0"
tokio = { version = "1", features = ["sync","rt-multi-thread"] }
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" }
teloxide ={ version = "0.13", default-features = false, features = ["rustls"]}
chrono = "0.4"
reqwest = { version = "0.12", default-features = false, features = ["json","rustls-tls"] }
parking_lot = "0.12"
log-panics = "2"
lettre = {version = "0.11", default-features = false, features = ["tokio1-rustls-tls","smtp-transport","builder"]}
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.6"
[profile.optimized]
inherits = "release"
strip = "debuginfo"
codegen-units = 1
lto = "fat"
debug = false