canic-core 0.35.5

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::dto::prelude::*;

//
// CanicMetadataResponse
//

#[derive(CandidType, Clone, Debug, Deserialize)]
pub struct CanicMetadataResponse {
    pub package_name: String,
    pub package_version: String,
    pub package_description: String,
    pub canic_version: String,
    pub canister_version: u64,
}