mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
Fixing makefile targets,
Added Version to userland crate
This commit is contained in:
parent
665ea0bed1
commit
3c4f75ab5c
4 changed files with 11 additions and 5 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -1380,7 +1380,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "userland"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"failure",
|
||||
"maplit 0.1.6",
|
||||
|
|
|
|||
8
Makefile
8
Makefile
|
|
@ -1,4 +1,4 @@
|
|||
.PHONY: all release test clean
|
||||
.PHONY: all release test clean publish-all
|
||||
|
||||
|
||||
all: clean release
|
||||
|
|
@ -13,3 +13,9 @@ release:
|
|||
cargo build --release
|
||||
mkdir -p artifacts
|
||||
cp target/release/pkg6dev artifacts/
|
||||
|
||||
publish-all: publish.libips publish.pkg6dev
|
||||
|
||||
publish.%: CRATE=$*
|
||||
publish.%:
|
||||
cd $(CRATE); cargo publish
|
||||
|
|
@ -13,7 +13,7 @@ keywords = ["packaging", "illumos"]
|
|||
|
||||
[dependencies]
|
||||
libips = {path = "../libips", version = "0.1.1"}
|
||||
userland = {path = "../userland"}
|
||||
userland = {path = "../userland", version = "0.1.1"}
|
||||
failure = "0.1.8"
|
||||
failure_derive = "0.1.8"
|
||||
clap = "~3.0.0-beta.2"
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "userland"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
authors = ["Till Wegmueller <toasterson@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue