Ian Goldberg hace 3 semanas
padre
commit
ea174e9ae6
Se han modificado 11 ficheros con 8 adiciones y 45 borrados
  1. 0 25
      .github/workflows/update-mirror.yml
  2. 0 1
      Cargo.toml
  3. 1 1
      LICENSE
  4. 1 2
      README.md
  5. 0 1
      cmz-core/Cargo.toml
  6. 1 1
      cmz-core/LICENSE
  7. 2 3
      cmz-core/README.md
  8. 0 1
      cmz-derive/Cargo.toml
  9. 1 1
      cmz-derive/LICENSE
  10. 2 3
      cmz-derive/README.md
  11. 0 6
      update-mirror

+ 0 - 25
.github/workflows/update-mirror.yml

@@ -1,25 +0,0 @@
-name: Update Mirror
-
-on:
-  schedule:
-    - cron: '0 0 * * *'  # Runs daily at midnight UTC
-  workflow_dispatch:  # Allows manual trigger
-
-jobs:
-  update-mirror:
-    runs-on: ubuntu-latest
-
-    steps:
-      - name: Checkout repository
-        uses: actions/checkout@v4
-        with:
-          fetch-depth: 0
-          token: ${{ secrets.GITHUB_TOKEN }}
-
-      - name: Configure Git
-        run: |
-          git config user.name "github-actions[bot]"
-          git config user.email "github-actions[bot]@users.noreply.github.com"
-
-      - name: Run update mirror script
-        run: ./update-mirror

+ 0 - 1
Cargo.toml

@@ -3,7 +3,6 @@ name = "cmz"
 version = "0.1.0"
 edition = "2021"
 license = "MIT"
-repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"
 description = "A crate to automatically create protocols that use CMZ14 or µCMZ credentials, by specifying an extremely compact description of the protocol."
 
 [dependencies]

+ 1 - 1
LICENSE

@@ -1,4 +1,4 @@
-Copyright 2025 Ian Goldberg
+Copyright 2025
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 

+ 1 - 2
README.md

@@ -1,5 +1,4 @@
-`cmz` by Ian Goldberg, iang@uwaterloo.ca  
-Version 0.1.0, 2025-10-10
+`cmz`
 
 This crate is centred around the concept of _credentials_.  A credential
 contains:

+ 0 - 1
cmz-core/Cargo.toml

@@ -3,7 +3,6 @@ name = "cmz-core"
 version = "0.1.0"
 edition = "2021"
 license = "MIT"
-repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"
 description = "Core functionality for the macros in the cmz crate"
 
 [dependencies]

+ 1 - 1
cmz-core/LICENSE

@@ -1,4 +1,4 @@
-Copyright 2025 Ian Goldberg
+Copyright 2025
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 

+ 2 - 3
cmz-core/README.md

@@ -1,5 +1,4 @@
-`cmz-core` by Ian Goldberg, iang@uwaterloo.ca  
-Version 0.1.0, 2025-10-10
+`cmz-core`
 
 This crate provides the core functionality for the macros in the
-[`cmz`](https://crates.io/crates/cmz) crate.
+`cmz` crate.

+ 0 - 1
cmz-derive/Cargo.toml

@@ -3,7 +3,6 @@ name = "cmz-derive"
 version = "0.1.0"
 edition = "2021"
 license = "MIT"
-repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"
 description = "Derive macros for the cmz crate"
 
 [lib]

+ 1 - 1
cmz-derive/LICENSE

@@ -1,4 +1,4 @@
-Copyright 2025 Ian Goldberg
+Copyright 2025
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 

+ 2 - 3
cmz-derive/README.md

@@ -1,5 +1,4 @@
-`cmz-derive` by Ian Goldberg, iang@uwaterloo.ca  
-Version 0.1.0, 2025-10-10
+`cmz-derive`
 
 This crate provides the derive macros for the
-[`cmz`](https://crates.io/crates/cmz) crate.
+`cmz` crate.

+ 0 - 6
update-mirror

@@ -1,6 +0,0 @@
-#!/bin/bash
-
-set -e
-
-git pull https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz main --tags
-git push origin main --tags