cdbk 0.3.1

a way to bundle apps for linux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::path::PathBuf;

use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize)]
pub struct Manifest {
    pub name: String,
    pub version: String,
    pub payload: PathBuf,

    pub icon: Option<PathBuf>,
    pub description: Option<String>,

    #[serde(default)]
    pub categories: Vec<String>,
    #[serde(default)]
    pub terminal: bool,
}