clnrest: Rename cln-rest to rest-plugin as per current naming standards

This commit is contained in:
ShahanaFarooqui
2025-02-07 13:55:22 -08:00
committed by Rusty Russell
parent 816970fdff
commit 1776e469a7
10 changed files with 4 additions and 4 deletions

View File

@@ -8,5 +8,5 @@ members = [
"cln-grpc",
"plugins",
"plugins/grpc-plugin",
"plugins/cln-rest"
"plugins/rest-plugin"
]

View File

@@ -377,7 +377,7 @@ ifneq ($(FUZZING),0)
endif
ifneq ($(RUST),0)
include cln-rpc/Makefile
include plugins/cln-rest/Makefile
include plugins/rest-plugin/Makefile
endif
include cln-grpc/Makefile

View File

@@ -296,11 +296,11 @@ CLN_PLUGIN_EXAMPLES := \
CLN_PLUGIN_SRC = $(shell find plugins/src -name "*.rs")
CLN_GRPC_PLUGIN_SRC = $(shell find plugins/grpc-plugin/src -name "*.rs")
CLNREST_PLUGIN_SRC = $(shell find plugins/cln-rest/src -name "*.rs")
CLN_REST_PLUGIN_SRC = $(shell find plugins/rest-plugin/src -name "*.rs")
target/${RUST_PROFILE}/cln-grpc: ${CLN_PLUGIN_SRC} ${CLN_GRPC_PLUGIN_SRC} $(MSGGEN_GENALL) $(MSGGEN_GEN_ALL)
cargo build ${CARGO_OPTS} --bin cln-grpc
target/${RUST_PROFILE}/clnrest: ${CLNREST_PLUGIN_SRC}
target/${RUST_PROFILE}/clnrest: ${CLN_REST_PLUGIN_SRC}
cargo build ${CARGO_OPTS} --bin clnrest
ifneq ($(RUST),0)