1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
use std::collections::BTreeMap;
use std::path::PathBuf;
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct ParsedCrate {
pub package: ParsedPackage,
pub dependencies: BTreeMap<String, toml::Value>,
}
#[derive(Debug, Deserialize)]
pub struct ParsedPackage {
pub name: String,
pub version: String,
#[serde(default = "default_publish")]
pub publish: bool,
#[serde(default)]
pub metadata: Metadata,
}
fn default_publish() -> bool {
true
}
#[derive(Debug, Deserialize, Default)]
pub struct Metadata {
#[serde(default)]
pub embassy: MetadataEmbassy,
}
#[allow(dead_code)]
#[derive(Debug, Deserialize, Default)]
pub struct MetadataEmbassy {
#[serde(default)]
pub skip: bool,
#[serde(default)]
pub build: Vec<BuildConfig>,
}
#[derive(Debug, Clone, Deserialize)]
pub struct BuildConfig {
#[serde(default)]
pub features: Vec<String>,
pub target: Option<String>,
#[serde(rename = "artifact-dir")]
pub artifact_dir: Option<String>,
}
pub type CrateId = String;
#[derive(Debug, Clone)]
pub struct Crate {
pub name: String,
pub version: String,
pub path: PathBuf,
pub dependencies: Vec<CrateId>,
pub configs: Vec<BuildConfig>,
pub publish: bool,
}
|