File tree Expand file tree Collapse file tree 4 files changed +24
-7
lines changed Expand file tree Collapse file tree 4 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 1+ name : publish
2+
3+ on :
4+ push :
5+ tags :
6+ - " *"
7+
8+ jobs :
9+ publish :
10+ name : Publish
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout sources
14+ uses : actions/checkout@v4
15+ - name : Install stable toolchain
16+ uses : dtolnay/rust-toolchain@1.90.0
17+ - name : Publish crate lambdaworks
18+ run : cargo publish --workspace --token ${{ secrets.CARGO_REGISTRY_TOKEN }} --all-features
Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ exclude = ["ensure-no_std"]
2727resolver = " 2"
2828
2929[workspace .package ]
30- version = " 0.12 .0"
30+ version = " 0.13 .0"
3131edition = " 2021"
3232license = " Apache-2.0"
3333repository = " https://github.com/lambdaclass/lambdaworks"
3434
3535[workspace .dependencies ]
36- lambdaworks-crypto = { path = " ./crates/crypto" , version = " 0.12 .0" , default-features = false }
37- lambdaworks-gpu = { path = " ./crates/gpu" , version = " 0.12 .0" }
38- lambdaworks-math = { path = " ./crates/math" , version = " 0.12 .0" , default-features = false }
36+ lambdaworks-crypto = { path = " ./crates/crypto" , version = " 0.13 .0" , default-features = false }
37+ lambdaworks-gpu = { path = " ./crates/gpu" , version = " 0.13 .0" }
38+ lambdaworks-math = { path = " ./crates/math" , version = " 0.13 .0" , default-features = false }
3939lambdaworks-groth16 = { path = " ./crates/provers/groth16" }
4040lambdaworks-circom-adapter = { path = " ./crates/provers/groth16/circom-adapter" }
4141lambdaworks-sumcheck = { path = " ./crates/provers/sumcheck" }
Original file line number Diff line number Diff line change 88Add this to your ` Cargo.toml `
99``` toml
1010[dependencies ]
11- lambdaworks-crypto = " 0.12 .0"
11+ lambdaworks-crypto = " 0.13 .0"
1212```
1313
1414## Structure
@@ -24,4 +24,3 @@ For examples on:
2424- Hash functions, refer to [ Hash functions' readme] ( ./src/hash/README.md )
2525- Fiat-Shamir heuristic, refer to [ Fiat-Shamir's readme] ( ./src/fiat_shamir/README.md )
2626- Polynomial commitment schemes, refer to [ PCS's readme] ( ./src/commitments/README.md )
27-
Original file line number Diff line number Diff line change 88Add this to your ` Cargo.toml `
99``` toml
1010[dependencies ]
11- lambdaworks-math = " 0.12 .0"
11+ lambdaworks-math = " 0.13 .0"
1212```
1313
1414## Structure
You can’t perform that action at this time.
0 commit comments