cob: Fix recursion bug in TryFrom of Reference
modified radicle-cob/src/backend/git/change.rs
@@ -139,6 +139,14 @@ impl change::Storage for git2::Repository {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cob/src/change/store.rs
@@ -3,6 +3,7 @@
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -37,6 +38,9 @@ pub trait Storage {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cob/src/change_graph.rs
@@ -32,15 +32,16 @@ impl ChangeGraph {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| - | |
| - | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -55,23 +56,22 @@ impl ChangeGraph {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
| - | |
| + | |
|
|
|
|
| - | |
| + | |
|
|
| - | |
| - | |
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -122,24 +122,32 @@ impl Default for GraphBuilder {
|
|
|
|
|
|
| - | |
| + | |
|
|
| - | |
| + | |
| + | |
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
|
|
| - | |
|
|
|
|
|
|
|
|
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cob/src/object/storage.rs
@@ -50,8 +50,6 @@ pub struct Reference {
|
|
|
|
|
|
| - | |
| - | |
|
|
|
|
|
@@ -129,10 +127,8 @@ pub mod convert {
|
|
|
|
|
|
| - | |
|
|
|
|
| - | |
|
|
|
|
|
modified radicle-cob/src/test/storage.rs
@@ -91,6 +91,15 @@ impl change::Storage for Storage {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle/src/storage/git/cob.rs
@@ -60,6 +60,10 @@ impl change::Storage for Repository {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|