We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ddf75f8 + ccd1891 commit 5062e79Copy full SHA for 5062e79
.github/workflows/publish-crate.yml
@@ -0,0 +1,14 @@
1
+name: publish-crate
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ crate:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - run: cargo publish
13
+ env:
14
+ CARGO_REGISTRY_TOKEN: ${{ secrets.DIVVIUP_AUTOMATON_CRATES_IO_API_TOKEN }}
Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "hpke-dispatch"
-version = "0.2.0"
+version = "0.2.1"
edition = "2021"
description = "runtime algorithmic selection for hybrid public key encryption"
-license = "MIT OR Apache-2.0"
-repository = "https://github.com/jbr/hpke-dispatch"
+license = "MPL-2.0"
+repository = "https://github.com/divviup/hpke-dispatch"
readme = "./README.md"
keywords = ["hpke", "encryption"]
categories = ["cryptography"]
0 commit comments