[package]
edition = "2021"
rust-version = "1.88.0"
name = "ic-utils"
version = "0.46.1"
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 = "Collection of utilities for Rust, on top of ic-agent, to communicate with the Internet Computer, following the Public Specification."
homepage = "https://docs.rs/ic-utils"
documentation = "https://docs.rs/ic-utils"
readme = "README.md"
keywords = [
"internet-computer",
"agent",
"utility",
"icp",
"dfinity",
]
categories = [
"api-bindings",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/dfinity/agent-rs"
[package.metadata.docs.rs]
features = [
"raw",
"wasm-bindgen",
]
targets = [
"x86_64-unknown-linux-gnu",
"wasm32-unknown-unknown",
]
[features]
raw = []
wasm-bindgen = ["ic-agent/wasm-bindgen"]
[lib]
name = "ic_utils"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.candid]
version = "0.10.10"
features = ["value"]
[dependencies.futures-util]
version = "0.3.31"
[dependencies.ic-agent]
version = "0.46.1"
[dependencies.ic-management-canister-types]
version = "0.7.1"
[dependencies.once_cell]
version = "1.10.0"
[dependencies.semver]
version = "1.0.7"
[dependencies.serde]
version = "1.0.215"
[dependencies.serde_bytes]
version = "0.11.15"
[dependencies.sha2]
version = "0.10.8"
[dependencies.strum]
version = "0.28.0"
[dependencies.strum_macros]
version = "0.28.0"
[dependencies.thiserror]
version = "2.0.3"
[dependencies.time]
version = "0.3"
[dev-dependencies.ic-agent]
version = "0.46.1"
[dev-dependencies.ic-ed25519]
version = "0.6.0"
[dev-dependencies.tokio]
version = "1.50.0"
features = ["full"]
[target."cfg(unix)".dev-dependencies]