cln-nip47/Cargo.toml

57 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2025-04-02 17:38:52 +02:00
[package]
name = "cln-nip47"
2026-08-09 18:14:12 +02:00
version = "0.2.0"
edition = "2024"
2026-01-15 13:47:03 +01:00
rust-version = "1.85.0"
2025-04-02 17:38:52 +02:00
[dependencies]
anyhow = "1"
log = { version = "0.4", features = ['std'] }
log-panics = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2025-07-24 18:30:25 +02:00
tokio = { version = "1", features = ["fs", "sync", "rt-multi-thread"] }
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" }
2025-04-02 17:38:52 +02:00
parking_lot = "0.12"
# # nostr-sdk = { git = "https://github.com/rust-nostr/nostr.git", rev = "ff5be7d1416ea201887a02f648795010a3cbdf49" }
# nostr = { git = "https://github.com/rust-nostr/nostr.git", rev = "ff5be7d1416ea201887a02f648795010a3cbdf49", features = [
# "nip47",
# "nip04",
# "nip44",
# ] }
2026-08-08 12:55:49 +02:00
nostr = { version = "0.45.1", features = ["nip47", "nip04", "nip44"] }
nostr-sdk = { version = "0.45.1" }
2026-02-03 22:33:00 +01:00
futures = "0.3"
2025-04-02 17:38:52 +02:00
2025-07-24 18:30:25 +02:00
uuid = { version = "1", features = ["v4"] }
2025-04-02 17:38:52 +02:00
hex = "0.4"
regex = "1"
2025-11-08 13:41:11 +01:00
tonic = { version = "0.14", default-features = false, features = [
"codegen",
"transport",
"tls-ring",
] }
prost = "0.14"
tonic-prost = "0.14"
[build-dependencies]
tonic-prost-build = "0.14"
protoc-bin-vendored = "3"
2025-11-08 13:41:11 +01:00
2025-04-02 17:38:52 +02:00
[profile.optimized]
inherits = "release"
strip = "debuginfo"
codegen-units = 1
lto = "fat"
2025-07-24 18:30:25 +02:00
debug = false