node: add version command to node
1 failed
(1 total)
View logs
modified crates/radicle-cli/src/commands/node/control.rs
@@ -282,18 +282,21 @@ pub fn status(node: &Node, profile: &Profile) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
| + | |
|
|
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
| + | |
|
|
|
|
|
modified crates/radicle-node/src/control.rs
@@ -246,6 +246,10 @@ where
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -365,5 +369,7 @@ mod tests {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
modified crates/radicle-node/src/runtime/handle.rs
@@ -361,6 +361,10 @@ impl radicle::node::Handle for Handle {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-node/src/test/handle.rs
@@ -142,6 +142,10 @@ impl radicle::node::Handle for Handle {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node.rs
@@ -1018,6 +1018,8 @@ pub trait Handle: Clone + Sync + Send {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -1362,6 +1364,15 @@ impl Handle for Node {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node/command.rs
@@ -135,6 +135,9 @@ pub enum Command {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|