From 656d10ab8c9b8e9ed420110fc4a22215a26b91fd Mon Sep 17 00:00:00 2001 From: Raine Date: Sat, 14 Oct 2023 22:39:50 +0200 Subject: [PATCH] feat: added packages for pkgr and bootpkg --- .gitignore | 2 +- bootpkg/package.toml | 10 ++++++++++ package.toml => pkgr/package.toml | 0 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 bootpkg/package.toml rename package.toml => pkgr/package.toml (100%) diff --git a/.gitignore b/.gitignore index bfa4a4d..7c9f50c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -dist/ +**/dist/ **/target **/Cargo.lock *.pkg \ No newline at end of file diff --git a/bootpkg/package.toml b/bootpkg/package.toml new file mode 100644 index 0000000..c272a08 --- /dev/null +++ b/bootpkg/package.toml @@ -0,0 +1,10 @@ +[package] +name = "bootpkg" #* +description = "A tool to strap pkgs" #* +version = 1 +tags = [] +type = "application" +arch = "x86_64" + +[bin] +root = "/root" \ No newline at end of file diff --git a/package.toml b/pkgr/package.toml similarity index 100% rename from package.toml rename to pkgr/package.toml