forked from n0-computer/iroh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: iroh-ctl now uses iroh to implement itself
For now I've disabled the "gateway" CLI argument as that needs more work on the iroh API side
- Loading branch information
Showing
5 changed files
with
77 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,16 @@ | |
name = "iroh-ctl" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Kasey Huizinga <[email protected]>"] | ||
authors = ["Kasey Huizinga <[email protected]>", "Martijn Faassen <[email protected]>"] | ||
license = "Apache-2.0/MIT" | ||
repository = "https://github.com/n0-computer/iroh" | ||
description = "Client for interacting with running iroh processes." | ||
default-run = "iroh-ctl" | ||
|
||
[[bin]] | ||
bench = false | ||
path = "src/main.rs" | ||
name = "iroh-ctl" | ||
|
||
[dependencies] | ||
anyhow = "1.0" | ||
|
@@ -22,6 +28,7 @@ iroh-util = { path = "../iroh-util" } | |
serde = { version = "1.0", features = ["derive"] } | ||
git-version = "0.3.5" | ||
iroh-metrics = { path = "../iroh-metrics", default-features = false, features = ["rpc-grpc"] } | ||
iroh = { path = "../iroh"} | ||
libp2p = { version = "0.48", default-features = false } | ||
cid = "0.8.5" | ||
multiaddr = "0.14.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters