Skip to content
122 changes: 116 additions & 6 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 @@ -21,6 +21,8 @@ assert_cmd = "2"
async-dropper = { version = "0.3.0", features = ["tokio", "simple"] }
async-trait = "0.1.88"
axoupdater = "0.10.0"
axum = "0.8"
base64 = "0.22"
backoff = { version = "0.4", features = ["tokio"] }
bigdecimal = "0.4.10"
bip32 = "0.5.0"
Expand Down Expand Up @@ -67,6 +69,7 @@ mockall = "0.14.0"
nix = { version = "0.31.2", features = ["process", "signal"] }
notify = "8.2.0"
num-bigint = "0.4.6"
open = "5"
num-integer = "0.1.46"
num-traits = "0.2.19"
p256 = { version = "0.13.2", features = ["pem", "pkcs8", "std"] }
Expand Down
3 changes: 3 additions & 0 deletions crates/icp-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ anstyle.workspace = true
anyhow.workspace = true
async-trait.workspace = true
axoupdater.workspace = true
axum.workspace = true
backoff.workspace = true
base64.workspace = true
bigdecimal.workspace = true
bip32.workspace = true
byte-unit.workspace = true
Expand Down Expand Up @@ -47,6 +49,7 @@ lazy_static.workspace = true
num-bigint.workspace = true
num-integer.workspace = true
num-traits.workspace = true
open.workspace = true
p256.workspace = true
pem.workspace = true
phf.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/icp-cli/src/commands/identity/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pub(crate) async fn exec(ctx: &Context, args: &ImportArgs) -> Result<(), anyhow:
unreachable!();
}

info!("Identity \"{}\" created", args.name);
info!("Identity `{}` created", args.name);

if matches!(args.storage, StorageMode::Plaintext) {
warn!(
Expand Down
2 changes: 1 addition & 1 deletion crates/icp-cli/src/commands/identity/link/hsm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub(crate) async fn exec(ctx: &Context, args: &HsmArgs) -> Result<(), HsmError>
.await?
.context(LinkHsmSnafu)?;

info!("Identity \"{}\" linked to HSM", args.name);
info!("Identity `{}` linked to HSM", args.name);

Ok(())
}
Expand Down
Loading
Loading