Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ jobs:
- name: Staging config tests
run: npm --prefix examples/js-sdk run test:staging-config

- name: JS example behavior tests
run: |
npm --prefix examples/js-sdk run test:reader-load-state
npm --prefix examples/js-sdk run test:pubky

- name: Paykit setup-status contract
run: npm --prefix examples/js-sdk run check:paykit-setup-contract

Expand Down
48 changes: 27 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resolver = "3"

[workspace.package]
edition = "2024"
version = "0.1.0-rc2"
version = "0.1.0-rc4"
license = "MIT"
repository = "https://github.com/pubky/locks"
rust-version = "1.91.1"
Expand All @@ -29,8 +29,8 @@ locks-core = { path = "locks-core" }
locks-service = { path = "locks-service" }
mime = "0.3"
paykit-lib = { git = "https://github.com/pubky/paykit-rs.git", tag = "v0.1.0-rc48" }
pubky = { version = "0.11.0", features = ["json"] }
pubky-common = "0.11.0"
pubky = { version = "0.11.0", git = "https://github.com/pubky/pubky-homeserver.git", rev = "99a2fb12f0ba4d3f7d9ff4b7b7b0740dabb18d03", features = ["json"] }
pubky-common = { version = "0.11.0", git = "https://github.com/pubky/pubky-homeserver.git", rev = "99a2fb12f0ba4d3f7d9ff4b7b7b0740dabb18d03" }
pubky-noise = "=0.1.0-rc7"
qrcode = { version = "0.14", default-features = false, features = ["svg"] }
pkarr = "8.0.0"
Expand Down Expand Up @@ -60,3 +60,7 @@ tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2"
uuid = { version = "1", features = ["v4", "js"] }

[patch.crates-io]
pubky = { git = "https://github.com/pubky/pubky-homeserver.git", rev = "99a2fb12f0ba4d3f7d9ff4b7b7b0740dabb18d03" }
pubky-common = { git = "https://github.com/pubky/pubky-homeserver.git", rev = "99a2fb12f0ba4d3f7d9ff4b7b7b0740dabb18d03" }
Loading