cli: Add tool in case `sqlite3` is unavailable
modified radicle-cli/src/commands/node.rs
@@ -13,6 +13,8 @@ use crate::terminal as term;
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -35,6 +37,7 @@ Usage
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -73,6 +76,9 @@ pub enum Operation {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -100,6 +106,7 @@ pub enum Operation {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -136,6 +143,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -188,6 +196,9 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -200,6 +211,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -235,6 +247,9 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
added radicle-cli/src/commands/node/commands.rs
@@ -0,0 +1,49 @@
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
modified radicle/src/node/db.rs
@@ -7,6 +7,7 @@
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -45,6 +46,14 @@ pub struct Database {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|