Skip to content

Commit e7024ff

Browse files
committed
reckless: rust rewrite
Changelog-None
1 parent 8fcc54b commit e7024ff

34 files changed

Lines changed: 6151 additions & 2869 deletions

Cargo.lock

Lines changed: 137 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ members = [
2020
"plugins/wss-proxy-plugin",
2121
"plugins/bip353-plugin",
2222
"plugins/currencyrate-plugin",
23+
"plugins/reckless-plugin",
2324
]
2425

2526
[workspace.dependencies]

Makefile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,7 @@ ALL_NONGEN_SRCFILES := $(ALL_NONGEN_HEADERS) $(ALL_NONGEN_SOURCES)
460460
BIN_PROGRAMS = \
461461
cli/lightning-cli \
462462
lightningd/lightningd \
463-
tools/lightning-hsmtool\
464-
tools/reckless
463+
tools/lightning-hsmtool
465464
PKGLIBEXEC_PROGRAMS = \
466465
lightningd/lightning_channeld \
467466
lightningd/lightning_closingd \
@@ -872,7 +871,7 @@ clean: obsclean
872871

873872
# See doc/contribute-to-core-lightning/contributor-workflow.md
874873
PYLNS=client proto testing
875-
update-versions: update-pyln-versions update-reckless-version update-dot-version # FIXME: update-doc-examples
874+
update-versions: update-pyln-versions update-dot-version # FIXME: update-doc-examples
876875
@uv lock
877876

878877
update-pyln-versions: $(PYLNS:%=update-pyln-version-%)
@@ -910,11 +909,6 @@ pyln-build-all: pyln-build pyln-build-bolts pyln-build-grpc-proto pyln-build-wss
910909
update-lock:
911910
uv sync --all-extras --all-groups
912911

913-
update-reckless-version:
914-
@if [ -z "$(NEW_VERSION)" ]; then echo "Set NEW_VERSION!" >&2; exit 1; fi
915-
@echo "Updating tools/reckless to $(NEW_VERSION)"
916-
@$(SED) -i.bak "s/__VERSION__ = '.*'/__VERSION__ = '$(NEW_VERSION)'/" tools/reckless && rm tools/reckless.bak
917-
918912
update-dot-version:
919913
@if [ -z "$(NEW_VERSION)" ]; then echo "Set NEW_VERSION!" >&2; exit 1; fi
920914
echo $(NEW_VERSION) > .version

0 commit comments

Comments
 (0)