navajo 0.0.4

cryptographic APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};

use crate::Kind;

#[cfg(not(feature="std"))]
use alloc::vec::Vec;

#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq)]
pub struct KeyringInfo<T> {
    #[serde(rename = "v")]
    pub version: u8,
    pub keys: Vec<T>,
    pub kind: Kind,
}