[package]
edition = "2021"
rust-version = "1.88.0"
name = "icx-cert"
version = "0.47.3"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
build = false
include = [
"src",
"Cargo.toml",
"../LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool to download a document from the Internet Computer and pretty-print the contents of its IC-Certificate header."
homepage = "https://docs.rs/icx-cert"
documentation = "https://docs.rs/icx-cert"
readme = "README.md"
keywords = [
"internet-computer",
"agent",
"icp",
"dfinity",
"certificate",
]
categories = ["command-line-interface"]
license = "Apache-2.0"
repository = "https://github.com/dfinity/agent-rs"
[[bin]]
name = "icx-cert"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
features = ["backtrace"]
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5.21"
features = [
"derive",
"cargo",
"color",
]
[dependencies.hex]
version = "0.4.3"
[dependencies.ic-certification]
version = "3"
[dependencies.leb128]
version = "0.2.5"
[dependencies.reqwest]
version = "0.13.2"
features = [
"blocking",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1.0.215"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11.15"
[dependencies.serde_cbor]
version = "0.11.2"
[dependencies.sha2]
version = "0.10.8"
[dependencies.time]
version = "0.3"
features = ["formatting"]