unify client versions at 0.2.0

add min rustc version to all crates
This commit is contained in:
Neil Movva
2023-08-28 22:59:25 -07:00
parent 2c73836add
commit 1b8960f5e2
10 changed files with 14 additions and 6 deletions

View File

@@ -67,7 +67,7 @@ jobs:
client-publish:
name: Publish JavaScript SDK
runs-on: ubuntu-latest
if: ${{ inputs.publish }}
if: ${{ inputs.publish || github.ref == 'refs/heads/main' }}
needs: [client-build]
steps:
- uses: actions/checkout@v3

View File

@@ -63,6 +63,8 @@ jobs:
if: matrix.target == 'x86_64'
working-directory: python
shell: bash
# TODO: pdoc is documenting the installed module, not the source folder.
# pdoc's import-based docs don't play well with maturin's structure.
run: |
pip install pdoc
pdoc -o pdoc -d google -n blyss --no-search
@@ -142,7 +144,7 @@ jobs:
publish:
name: Publish
runs-on: ubuntu-latest
if: ${{ inputs.publish }}
if: ${{ inputs.publish || github.ref == 'refs/heads/main' }}
needs: [linux, macos, windows, sdist]
steps:
- uses: actions/download-artifact@v3

View File

@@ -1,13 +1,14 @@
[package]
name = "spiral-rs-js-bridge"
description = "Bridge crate between the spiral-rs-client library and the JS client"
version = "0.1.0"
version = "0.2.0"
authors = ["Samir Menon <samir@blyss.dev>"]
license = "MIT"
repository = "https://github.com/blyssprivacy/sdk"
categories = ["wasm"]
readme = "README.md"
edition = "2018"
rust-version = "1.70.0"
[lib]
crate-type = ["cdylib", "rlib"]

View File

@@ -12,6 +12,7 @@ keywords = ["privacy", "fhe", "cryptography"]
categories = ["cryptography"]
readme = "README.md"
license = "MIT"
rust-version = "1.70.0"
[dependencies]
base64 = "0.21.0"

View File

@@ -2,6 +2,7 @@
name = "doublepir-rs"
version = "0.1.0"
edition = "2021"
rust-version = "1.70.0"
[features]
client = ["reqwest", "base64", "sha1"]

View File

@@ -12,6 +12,7 @@ keywords = ["privacy", "fhe", "cryptography"]
categories = ["cryptography"]
readme = "README.md"
license = "MIT"
rust-version = "1.70.0"
[[bin]]
name = "server"

View File

@@ -12,6 +12,7 @@ keywords = ["privacy", "fhe", "cryptography"]
categories = ["cryptography"]
readme = "README.md"
license = "MIT"
rust-version = "1.70.0"
[features]
server = ["rayon"]

View File

@@ -1,7 +1,7 @@
{
"author": "Samir Menon <samir@blyss.dev>",
"name": "@blyss/sdk",
"version": "0.1.9",
"version": "0.2.0",
"description": "Blyss SDK, enabling private retrievals from Blyss buckets",
"type": "module",
"main": "./dist/index.js",

2
python/Cargo.lock generated
View File

@@ -25,7 +25,7 @@ dependencies = [
[[package]]
name = "blyss-client-python"
version = "0.2.1"
version = "0.2.0"
dependencies = [
"pyo3",
"spiral-rs",

View File

@@ -1,7 +1,8 @@
[package]
name = "blyss-client-python"
version = "0.2.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.70.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]