Skip to content

Commit

Permalink
Prepares for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Sep 9, 2023
1 parent 63ba7c7 commit 815233b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,11 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Publish crate
- name: Publish zfi-macros
run: cargo publish -p zfi-macros
- name: Publish zfi
run: cargo publish
- name: Publish zfi-testing-macros
run: cargo publish -p zfi-testing-macros
- name: Publish zfi-testing
run: cargo publish -p zfi-testing
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "zfi"
description = "Zero-cost and safe interface to UEFI firmware"
version = "0.1.0"
version = "0.2.0"
license = "MIT"
repository = "https://github.com/ultimicro/zfi"
edition = "2021"

[dependencies]
bitflags = "2.4"
zfi-macros = { path = "macros" }
zfi-macros = { version = "0.1", path = "macros" }

[dev-dependencies]
zfi-testing = { path = "testing" }
Expand Down
3 changes: 3 additions & 0 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[package]
name = "zfi-macros"
description = "Macros to be used with zfi crate"
version = "0.1.0"
license = "MIT"
repository = "https://github.com/ultimicro/zfi"
edition = "2021"

[lib]
Expand Down
3 changes: 3 additions & 0 deletions testing-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[package]
name = "zfi-testing-macros"
description = "Macros to be used with zfi-testing crate"
version = "0.1.0"
license = "MIT"
repository = "https://github.com/ultimicro/zfi"
edition = "2021"

[lib]
Expand Down
5 changes: 4 additions & 1 deletion testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[package]
name = "zfi-testing"
description = "UEFI testing framework"
version = "0.1.0"
license = "MIT"
repository = "https://github.com/ultimicro/zfi"
edition = "2021"

[dependencies]
Expand All @@ -9,4 +12,4 @@ gpt = "3.1"
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
toml = "0.7"
zfi-testing-macros = { path = "../testing-macros" }
zfi-testing-macros = { version = "0.1", path = "../testing-macros" }

0 comments on commit 815233b

Please sign in to comment.