From fc2ee9bedc17d8d4e16ec74d1c841d0abdfd66ed Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Tue, 6 Feb 2024 12:35:42 +1000 Subject: [PATCH] make comments link to issue --- .github/workflows/rust.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c87828167..c94628973 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -148,7 +148,7 @@ jobs: steps: - uses: actions/checkout@v3 - uses: stellar/actions/rust-cache@main - # nightly-2024-02-05 introduced a problem with curve-dalek crate + # TODO: Upgrade to latest nightly after problem that was introduced in nightly-2024-02-05 (https://github.com/dalek-cryptography/curve25519-dalek/issues/618) is resolved. - run: rustup install nightly-2024-02-03 - run: make doc diff --git a/Makefile b/Makefile index a0b70e6d2..ab542aa02 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ CARGO_DOC_ARGS?=--open doc: fmt cargo test --doc -p soroban-sdk -p soroban-sdk-macros --features testutils - # nightly-2024-02-05 introduced a problem with curve-dalek crate + # TODO: Upgrade to latest nightly after problem that was introduced in nightly-2024-02-05 (https://github.com/dalek-cryptography/curve25519-dalek/issues/618) is resolved. cargo +nightly-2024-02-03 doc -p soroban-sdk --no-deps --features docs,testutils $(CARGO_DOC_ARGS) test: fmt build