Skip to content

Commit

Permalink
chore: Rename to argument (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham authored Aug 6, 2024
1 parent 34b5379 commit 7275595
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ on:

jobs:
docs:
uses: lurk-lab/ci-workflows/.github/workflows/docs.yml@main
uses: argumentcomputer/ci-workflows/.github/workflows/docs.yml@main
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
unused-dependencies:
uses: lurk-lab/ci-workflows/.github/workflows/unused-deps.yml@main
uses: argumentcomputer/ci-workflows/.github/workflows/unused-deps.yml@main

rust-version-check:
uses: lurk-lab/ci-workflows/.github/workflows/rust-version-check.yml@main
uses: argumentcomputer/ci-workflows/.github/workflows/rust-version-check.yml@main
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: lurk-lab/ci-workflows
repository: argumentcomputer/ci-workflows
- uses: ./.github/actions/ci-env
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -46,7 +46,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: lurk-lab/ci-workflows
repository: argumentcomputer/ci-workflows
- uses: ./.github/actions/ci-env
- uses: ./.github/actions/install-deps
with:
Expand All @@ -56,15 +56,15 @@ jobs:
path: ${{ github.workspace }}/bellpepper
- uses: actions/checkout@v4
with:
repository: lurk-lab/lurk-rs
repository: argumentcomputer/lurk-rs
path: ${{ github.workspace }}/lurk
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Patch Cargo.toml
working-directory: ${{ github.workspace }}/lurk
run: |
echo "[patch.'https://github.com/lurk-lab/bellpepper']" >> Cargo.toml
echo "[patch.'https://github.com/argumentcomputer/bellpepper']" >> Cargo.toml
echo "bellpepper = { path='../bellpepper/crates/bellpepper' }" >> Cargo.toml
echo "[patch.crates-io]" >> Cargo.toml
echo "bellpepper-core = { path='../bellpepper/crates/bellpepper-core' }" >> Cargo.toml
Expand Down Expand Up @@ -112,10 +112,10 @@ jobs:

# Check documentation links aren't broken
link-checker:
uses: lurk-lab/ci-workflows/.github/workflows/links-check.yml@main
uses: argumentcomputer/ci-workflows/.github/workflows/links-check.yml@main
with:
fail-fast: true

# Lint dependencies for licensing and auditing issues as per https://github.com/lurk-lab/bellpepper/blob/main/deny.toml
# Lint dependencies for licensing and auditing issues as per https://github.com/argumentcomputer/bellpepper/blob/main/deny.toml
licenses-audits:
uses: lurk-lab/ci-workflows/.github/workflows/licenses-audits.yml@main
uses: argumentcomputer/ci-workflows/.github/workflows/licenses-audits.yml@main
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ representative at an online or offline event.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at community@lurk-lab.com.
reported to the community leaders responsible for enforcement at community@argument.xyz.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bellpepper [![Crates.io](https://img.shields.io/crates/v/bellpepper.svg)](https://crates.io/crates/bellpepper) [![dependency status](https://deps.rs/repo/github/lurk-lab/bellpepper/status.svg)](https://deps.rs/repo/github/lurk-lab/bellpepper) [![Build status](https://img.shields.io/github/actions/workflow/status/lurk-lab/bellpepper/rust.yml?branch=main)](https://github.com/lurk-lab/bellpepper/actions)
# bellpepper [![Crates.io](https://img.shields.io/crates/v/bellpepper.svg)](https://crates.io/crates/bellpepper) [![dependency status](https://deps.rs/repo/github/argumentcomputer/bellpepper/status.svg)](https://deps.rs/repo/github/argumentcomputer/bellpepper) [![Build status](https://img.shields.io/github/actions/workflow/status/argumentcomputer/bellpepper/rust.yml?branch=main)](https://github.com/argumentcomputer/bellpepper/actions)

> This is a fork of the great [bellperson](https://github.com/filecoin-project/bellperson) library,
> Itself a fork of the great [bellman](https://github.com/zkcrypto/bellman) library.
Expand Down
4 changes: 2 additions & 2 deletions crates/bellpepper-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ authors = [
]
description = "Core elements for a SNARK Circuit library"
documentation = "https://docs.rs/bellpepper-core"
homepage = "https://github.com/lurk-lab/bellpepper"
homepage = "https://github.com/argumentcomputer/bellpepper"
license = "MIT/Apache-2.0"
repository = "https://github.com/lurk-lab/bellpepper"
repository = "https://github.com/argumentcomputer/bellpepper"
version = "0.4.0"
readme = "../../README.md"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions crates/bellpepper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ authors = [
]
description = "Gadgets for a SNARK Circuit library"
documentation = "https://docs.rs/bellpepper"
homepage = "https://github.com/lurk-lab/bellpepper"
homepage = "https://github.com/argumentcomputer/bellpepper"
license = "MIT/Apache-2.0"
repository = "https://github.com/lurk-lab/bellpepper"
repository = "https://github.com/argumentcomputer/bellpepper"
version = "0.4.1"
readme = "README.md"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ allow-git = []

[sources.allow-org]
# 1 or more github.com organizations to allow git sources for
github = ["lurk-lab"]
github = ["argumentcomputer"]
# 1 or more gitlab.com organizations to allow git sources for
# gitlab = [""]
# 1 or more bitbucket.org organizations to allow git sources for
Expand Down

0 comments on commit 7275595

Please sign in to comment.