From 6c5b59bf5760f8819e9bdb1baab8a4c2fdbde1b5 Mon Sep 17 00:00:00 2001 From: Chris Wedgwood Date: Fri, 5 Apr 2024 10:42:45 -0700 Subject: [PATCH] use canonical upstream repos --- .github/workflows/rust.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d3d5777..ad6fcf3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -32,9 +32,9 @@ jobs: - name: Clone libnfs uses: actions/checkout@v4 with: - repository: cwedgwood/libnfs + repository: sahlberg/libnfs path: libnfs/ - ref: master + ref: c09a0f1 - name: Build and install libnfs working-directory: libnfs/ run: | diff --git a/Cargo.toml b/Cargo.toml index a5470fb..fce9732 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,6 @@ edition = '2021' [dependencies] libc = "~0.2" # Presently the version of crates.io doesn't work (needs update) -libnfs-sys = { git = "https://github.com/cwedgwood/rs-libnfs-sys" } +libnfs-sys = { git = "https://github.com/cholcombe973/libnfs-sys", ref="890d756" } nix = "~0.25"