init: initial commit of packager
This commit is contained in:
commit
7964bb84fd
25 changed files with 478 additions and 0 deletions
22
bootpkg/src/prelude.rs
Normal file
22
bootpkg/src/prelude.rs
Normal file
|
@ -0,0 +1,22 @@
|
|||
use std::collections::HashMap;
|
||||
use manifest::Manifest;
|
||||
|
||||
pub struct PKGR {
|
||||
pub bootstrap: Option<Bootstrap>,
|
||||
}
|
||||
|
||||
pub struct Bootstrap {}
|
||||
|
||||
pub fn def_manifest() {
|
||||
Manifest::<Option<PKGR>> {
|
||||
package: manifest::package::Package::default(),
|
||||
bin: None,
|
||||
build: None,
|
||||
dependencies: HashMap::default(),
|
||||
fs: manifest::fs::FS {
|
||||
config: None,
|
||||
data: None,
|
||||
},
|
||||
pkgr: Some(PKGR { bootstrap: None }),
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue