Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ jobs:
- name: Verify and publish capglyph-server
if: steps.core-registry.outputs.ready == 'true'
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }}
shell: bash
run: |
set -euo pipefail
Expand All @@ -465,7 +465,7 @@ jobs:
- name: Verify and publish capglyph
if: steps.core-registry.outputs.ready == 'true'
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }}
shell: bash
run: |
set -euo pipefail
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capglyph"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "Invisible structural watermark for images — human-invisible, machine-detectable"
license = "Apache-2.0"
Expand Down Expand Up @@ -84,7 +84,7 @@ time = { version = "0.3", features = ["formatting"], optional = true }
clap = { version = "4.5", features = ["derive"] }
glob = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
capglyph-server = { path = "crates/capglyph-server", version = "0.1.2" }
capglyph-server = { path = "crates/capglyph-server", version = "0.1.3" }
rand = "0.8"
uuid = { version = "1.8", features = ["v4", "serde"] }

Expand Down
2 changes: 1 addition & 1 deletion crates/capglyph-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capglyph-server"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "CapGlyph credential server (sigild) — DB + atomic consume + revocation/audit"
license = "Apache-2.0"
Expand Down