feat: use the same Oid type everywhere
Previously we imported the Oid type (for Git object identifiers) different places. This was confusing, and also meant that upgrading a dependency (radicle-git-ext) broke, because two types with the same name imported from different versions of the same crate are different types.
Change this so that radicle::git::Oid is the one true Oid type we use.
Signed-off-by: Lars Wirzenius liw@liw.fi
8 files changed
+8
-12
00ca0e8f
→
c45291bc
modified src/bin/cibtool.rs
@@ -21,12 +21,11 @@ use clap::Parser;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| - | |
|
|
|
|
|
modified src/ci_event.rs
@@ -3,11 +3,10 @@ use std::path::{Path, PathBuf};
|
|
|
|
|
|
| - | |
| - | |
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified src/filter.rs
@@ -4,12 +4,11 @@ use serde::{Deserialize, Serialize};
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| - | |
|
|
|
|
|
modified src/logger.rs
@@ -3,7 +3,7 @@
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified src/msg.rs
@@ -1226,9 +1226,8 @@ pub mod helper {
|
|
|
|
|
|
| - | |
|
|
| - | |
| + | |
|
|
|
|
|
modified src/pages.rs
@@ -22,7 +22,7 @@ use serde::Serialize;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified src/subplot.rs
@@ -10,12 +10,12 @@ use std::{
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
|
|
|
|
| - | |
|
|
|
|
|
modified src/util.rs
@@ -12,11 +12,11 @@ use time::{
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
|
|
| - | |
|
|
|
|
|