mirror of
https://github.com/blyssprivacy/sdk.git
synced 2026-01-10 07:38:20 -05:00
unify client versions at 0.2.0
add min rustc version to all crates
This commit is contained in:
2
.github/workflows/build-js.yml
vendored
2
.github/workflows/build-js.yml
vendored
@@ -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
|
||||
|
||||
4
.github/workflows/build-python.yml
vendored
4
.github/workflows/build-python.yml
vendored
@@ -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
|
||||
|
||||
@@ -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"]
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
name = "doublepir-rs"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.70.0"
|
||||
|
||||
[features]
|
||||
client = ["reqwest", "base64", "sha1"]
|
||||
|
||||
@@ -12,6 +12,7 @@ keywords = ["privacy", "fhe", "cryptography"]
|
||||
categories = ["cryptography"]
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
rust-version = "1.70.0"
|
||||
|
||||
[[bin]]
|
||||
name = "server"
|
||||
|
||||
@@ -12,6 +12,7 @@ keywords = ["privacy", "fhe", "cryptography"]
|
||||
categories = ["cryptography"]
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
rust-version = "1.70.0"
|
||||
|
||||
[features]
|
||||
server = ["rayon"]
|
||||
|
||||
@@ -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
2
python/Cargo.lock
generated
@@ -25,7 +25,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "blyss-client-python"
|
||||
version = "0.2.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"pyo3",
|
||||
"spiral-rs",
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user