summars/Cargo.toml
daywalker90 29ca7643e5
Some checks failed
master on CLN v25.09.x / call-ci (push) Has been cancelled
master on CLN v25.12.x / call-ci (push) Has been cancelled
master on CLN v26.04.x / call-ci (push) Has been cancelled
master on CLN v26.06.x / call-ci (push) Has been cancelled
release v6.2.3
2026-07-09 12:57:19 +02:00

62 lines
1.3 KiB
TOML

[package]
name = "summars"
version = "6.2.3"
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.7"
# cln-rpc = { path = "../lightning/cln-rpc/", version = "^0.6" }
cln-plugin = "0.7"
# cln-plugin = { path = "../lightning/plugins/", version = "^0.6" }
tabled = "0.21"
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"
protoc-bin-vendored = "3"
[profile.optimized]
inherits = "release"
strip = "debuginfo"
codegen-units = 1
lto = "fat"
debug = false