[package]
edition = "2021"
name = "ic-canister-runtime"
version = "0.1.2"
authors = ["DFINITY Foundation"]
build = false
include = [
"src",
"Cargo.toml",
"CHANGELOG.md",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library that abstracts the canister runtime on the Internet Computer"
homepage = "https://github.com/dfinity/canhttp"
documentation = "https://docs.rs/ic-canister-runtime"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/dfinity/canhttp"
[features]
wallet = [
"dep:regex-lite",
"dep:serde_bytes",
]
[lib]
name = "ic_canister_runtime"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.candid]
version = "0.10.20"
[dependencies.ic-cdk]
version = "0.19.0"
[dependencies.ic-error-types]
version = "0.2"
[dependencies.regex-lite]
version = "0.1.8"
optional = true
[dependencies.serde]
version = "1.0"
[dependencies.serde_bytes]
version = "0.11.19"
optional = true
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.tokio]
version = "1.49.0"
features = ["full"]