acts-next 0.14.2

a fast, tiny, extensiable workflow engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

#[derive(Default, Deserialize, Serialize, Debug, Clone)]
pub struct Package {
    pub id: String,
    pub name: String,
    pub size: u32,
    #[serde(with = "hex")]
    pub data: Vec<u8>,
    pub create_time: i64,
    pub update_time: i64,
    pub timestamp: i64,
}