upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/git.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-03-22 15:51:31 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2024-03-22 15:51:31 +0000
commitf7d520e9ccb6084144a3e963516e40a322add0c8 (patch)
treeff166ff791d4cd744fd4818d853a558aefb87877 /src/git.rs
parent07a6b27eacc9cb80b0858ae8d7042287567ea790 (diff)
use Sha1Hashin new location
it had moved from 'prelude' to 'hashes'
Diffstat (limited to 'src/git.rs')
-rw-r--r--src/git.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/git.rs b/src/git.rs
index 86b59fb..77c1dcb 100644
--- a/src/git.rs
+++ b/src/git.rs
@@ -4,7 +4,7 @@ use std::{env::current_dir, path::Path};
4 4
5use anyhow::{bail, Context, Result}; 5use anyhow::{bail, Context, Result};
6use git2::{DiffOptions, Oid, Revwalk}; 6use git2::{DiffOptions, Oid, Revwalk};
7use nostr::prelude::{sha1::Hash as Sha1Hash, Hash}; 7use nostr_sdk::hashes::{sha1::Hash as Sha1Hash, Hash};
8 8
9use crate::sub_commands::list::{get_commit_id_from_patch, tag_value}; 9use crate::sub_commands::list::{get_commit_id_from_patch, tag_value};
10 10