Skip to content

Commit

Permalink
bump version to test multi package deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
xand6r committed Nov 26, 2024
1 parent 1a3eb77 commit e04a3d3
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/publish-crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,24 @@ jobs:
run: cargo login ${{ secrets.CARGO_TOKEN }}

# Step 4: Publish the library
- name: Publish Library to crates.io
- name: Publish `ic/libraries::verity_dp_ic` to crates.io
continue-on-error: true
run: |
cd ic/libraries
cargo publish --allow-dirty
# Step 4: Publish the zk libraries
- name: Publish `rs/remote-verify::remote_verify` to crates.io
continue-on-error: true
run: |
cd rs/remote-verify
cargo publish --allow-dirty
# Step 4: Publish the zk libraries
- name: Publish `rs/remote-verify::local_verify` to crates.io
continue-on-error: true
run: |
cd rs/local-verify
cargo publish --allow-dirty
# Step 5: Publish the rs libraries
2 changes: 1 addition & 1 deletion ic/libraries/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "verity_dp_ic"
version = "0.1.4"
version = "0.1.5"
license = "MIT/Apache-2.0"
description = "A Library containing utilities for the verity IC components"
documentation = "https://www.usher.so/"
Expand Down
4 changes: 2 additions & 2 deletions rs/local-verify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "local-verify"
version = "0.1.0"
name = "local_verify"
version = "0.1.1"
edition = "2021"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions rs/remote-verify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "remote-verify"
version = "0.1.0"
name = "remote_verify"
version = "0.1.1"
edition = "2021"

[dependencies]
Expand All @@ -13,4 +13,4 @@ ic-agent = { git = "https://github.com/dfinity/agent-rs.git", rev = "60a64dd2d53
ic-identity-hsm = { git = "https://github.com/dfinity/agent-rs.git", rev = "60a64dd2d5368180f03a75df80f475d6e2caf21a" }
ic-utils = { git = "https://github.com/dfinity/agent-rs.git", rev = "60a64dd2d5368180f03a75df80f475d6e2caf21a" }
tokio = { version = "1.40.0", features = ["full"] }
local-verify = { path = "../local-verify" }
local_verify = { path = "../local-verify" }
2 changes: 1 addition & 1 deletion zk/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ anyhow = { version = "1.0.75" }
bonsai-sdk = { version = "0.8.0-rc.3" }
serde = "1"
serde_json = "1.0.107"
remote-verify = { path = "../../rs/remote-verify/" }
remote_verify = { path = "../../rs/remote-verify/" }
tlsn-core-no-session = { path = "../../../verity/tlsn-core-no-session" }

0 comments on commit e04a3d3

Please sign in to comment.