Skip to content

Commit 5833d8b

Browse files
committed
reckless: rust rewrite
Changelog-None
1 parent 45b04dc commit 5833d8b

46 files changed

Lines changed: 8053 additions & 3008 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.msggen.json

Lines changed: 463 additions & 0 deletions
Large diffs are not rendered by default.

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
@@ -461,8 +461,7 @@ ALL_NONGEN_SRCFILES := $(ALL_NONGEN_HEADERS) $(ALL_NONGEN_SOURCES)
461461
BIN_PROGRAMS = \
462462
cli/lightning-cli \
463463
lightningd/lightningd \
464-
tools/lightning-hsmtool\
465-
tools/reckless
464+
tools/lightning-hsmtool
466465
PKGLIBEXEC_PROGRAMS = \
467466
lightningd/lightning_channeld \
468467
lightningd/lightning_closingd \
@@ -873,7 +872,7 @@ clean: obsclean
873872

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

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

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

0 commit comments

Comments
 (0)