diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 22840c6..1e6e446 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -1,52 +1,52 @@
-name: Deploy Rust Docs to GitHub Pages
-
-on:
- push:
- branches:
- - main
-
-concurrency:
- group: "pages"
- cancel-in-progress: false
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout sources
- uses: actions/checkout@v4
-
- - name: Install stable toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
-
- - name: Build Rust Documentation
- run: |
- cargo doc --no-deps --document-private-items
- echo "" > target/doc/index.html
-
- - name: Upload artifact
- uses: actions/upload-pages-artifact@v3
- with:
- path: ./target/doc
-
- deploy:
- runs-on: ubuntu-latest
- needs: build
-
- permissions:
- pages: write
- id-token: write
-
- environment:
- name: docs
- url: ${{ steps.deployment.outputs.page_url }}
-
- steps:
- - name: Deploy to GitHub Pages
- id: deployment
- uses: actions/deploy-pages@v4
+#name: Deploy Rust Docs to GitHub Pages
+#
+#on:
+# push:
+# branches:
+# - main
+#
+#concurrency:
+# group: "pages"
+# cancel-in-progress: false
+#
+#jobs:
+# build:
+# runs-on: ubuntu-latest
+#
+# steps:
+# - name: Checkout sources
+# uses: actions/checkout@v4
+#
+# - name: Install stable toolchain
+# uses: actions-rs/toolchain@v1
+# with:
+# profile: minimal
+# toolchain: stable
+# override: true
+#
+# - name: Build Rust Documentation
+# run: |
+# cargo doc --no-deps --document-private-items
+# echo "" > target/doc/index.html
+#
+# - name: Upload artifact
+# uses: actions/upload-pages-artifact@v3
+# with:
+# path: ./target/doc
+#
+# deploy:
+# runs-on: ubuntu-latest
+# needs: build
+#
+# permissions:
+# pages: write
+# id-token: write
+#
+# environment:
+# name: docs
+# url: ${{ steps.deployment.outputs.page_url }}
+#
+# steps:
+# - name: Deploy to GitHub Pages
+# id: deployment
+# uses: actions/deploy-pages@v4
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index d390154..7ae6a2e 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -25,4 +25,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
-
diff --git a/Cargo.toml b/Cargo.toml
index 82bc8ac..7d0ccae 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,9 +4,8 @@ version = "0.1.0"
edition = "2021"
description = "BPCon: A Byzantine Fault-Tolerant Consensus Protocol Implementation in Rust."
license = "MIT"
-repository = "https://github.com/distributed-lab/bpcon"
-homepage = "https://github.com/distributed-lab/bpcon#readme"
-documentation = "https://distributed-lab.github.io/bpcon/"
+repository = "https://github.com/NikitaMasych/bpcon"
+homepage = "https://github.com/NikitaMasych/bpcon#readme"
keywords = ["consensus", "byzantine", "protocol", "distributed-systems", "blockchain"]
categories = ["algorithms"]
authors = ["Distributed Lab"]
diff --git a/package.json b/package.json
index 7472900..b3235e3 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,7 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/distributed-lab/bpcon"
+ "url": "https://github.com/NikitaMasych/bpcon"
},
"keywords": [
"Rust",
@@ -16,9 +16,9 @@
],
"author": "DistributedLab",
"bugs": {
- "url": "https://github.com/distributed-lab/bpcon/issues"
+ "url": "https://github.com/NikitaMasych/bpcon/issues"
},
- "homepage": "https://github.com/distributed-lab/bpcon#readme",
+ "homepage": "https://github.com/NikitaMasych/bpcon#readme",
"devDependencies": {
"prettier": "^3.3.3",
"semantic-release": "24.1.2",