8000 feat(merod): revamp config command with printing, hints, and safe editing by Nathy-bajo · Pull Request #1274 · calimero-network/core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(merod): revamp config command with printing, hints, and safe editing #1274

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ ic-signature-verification = "0.2"
indexmap = "2.6.0"
itertools = "0.14.0"
jsonwebtoken = "9.3.0"
lazy_static = "1.4"
libp2p = "0.53.2"
libp2p-stream = "0.1.0-alpha.1"
libp2p-identity = "0.2.9"
Expand Down Expand Up @@ -111,6 +112,7 @@ semver = "1.0.22"
serde = "1.0.196"
serde_json = "1.0.113"
serde_with = "3.9.0"
similar = "2.2"
soroban-sdk = { version = "22.0.5", features = ["alloc"] }
starknet = "0.12.0"
starknet-crypto = "0.7.1"
Expand All @@ -121,6 +123,7 @@ soroban-client = "0.3.7"
syn = "2.0"
tempdir = "0.3.7"
tempfile = "3.12.0"
termcolor = "1.4"
thiserror = "1.0.56"
thunderdome = "0.6.1"
tokio = "1.35.1"
Expand Down
3 changes: 3 additions & 0 deletions crates/merod/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,15 @@ libp2p.workspace = true
multiaddr.workspace = true
near-crypto.workspace = true
rand.workspace = true
serde_json.workspace = true
similar.workspace = true
reqwest = { workspace = true, features = ["json"] }
semver = { workspace = true, features = ["serde"] }
serde = { workspace = true, features = ["derive"] }
starknet.workspace = true
soroban-client.workspace = true
tokio = { workspace = true, features = ["io-std", "macros", "fs"] }
toml.workspace = true
toml_edit.workspace = true
tracing.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }
Expand Down
Loading
Loading
0