From 6de5e246fb5642e641f88a38049c30f7895243a0 Mon Sep 17 00:00:00 2001 From: ae Date: Fri, 30 Aug 2024 18:32:05 +0300 Subject: [PATCH] refactor: rm dangling links after migration --- .github/workflows/build.yaml | 40 ----------------------- .github/workflows/cargo-checkmate.yaml | 21 ------------ LICENSE | 2 +- README.md | 12 ++----- {.github/docs => docs}/contego-dark.png | Bin {.github/docs => docs}/contego-light.png | Bin 6 files changed, 4 insertions(+), 71 deletions(-) delete mode 100644 .github/workflows/build.yaml delete mode 100644 .github/workflows/cargo-checkmate.yaml rename {.github/docs => docs}/contego-dark.png (100%) rename {.github/docs => docs}/contego-light.png (100%) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index 992d01c..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -1,40 +0,0 @@ -name: Release - -permissions: - contents: write - -on: - push: - tags: - - v[0-9]+.* - -jobs: - create-release: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: taiki-e/create-gh-release-action@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - upload-assets: - strategy: - matrix: - include: - - target: x86_64-unknown-linux-gnu - os: ubuntu-latest - - target: aarch64-apple-darwin - os: macos-latest - - target: x86_64-pc-windows-msvc - os: windows-latest - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v3 - - uses: taiki-e/upload-rust-binary-action@v1 - with: - bin: contego - tar: unix - include: LICENSE - checksum: sha256 - target: ${{ matrix.target }} - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/cargo-checkmate.yaml b/.github/workflows/cargo-checkmate.yaml deleted file mode 100644 index f5ad578..0000000 --- a/.github/workflows/cargo-checkmate.yaml +++ /dev/null @@ -1,21 +0,0 @@ -name: Checkmate CI - -on: [push, pull_request] - -env: - CARGO_TERM_COLOR: always - RUST_BACKTRACE: full - -jobs: - cargo-checkmate: - name: cargo-checkmate - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - run: cargo install cargo-checkmate - - run: cargo-checkmate diff --git a/LICENSE b/LICENSE index 7bb08cb..aaba73a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 einisto +Copyright (c) 2022 ae Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 78b1f25..3c00d94 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,17 @@
- - + +
-

- - - -

- ## Cryptographic specifications The initial key exchange is performed with elliptic-curve Diffie-Hellman. General data exchange is encrypted with AES-GCM. During regular communication payloads are Base64 encoded before being encrypted to prevent delimiter conflicts. SHA-256 hashes of files are compared to ensure data integrity. ## Usage -Check [releases](https://github.com/17ms/contego/releases) for an up-to-date executables or build from source with `cargo build --release`. +Build the optimized binary with `cargo build --release`. ### Server diff --git a/.github/docs/contego-dark.png b/docs/contego-dark.png similarity index 100% rename from .github/docs/contego-dark.png rename to docs/contego-dark.png diff --git a/.github/docs/contego-light.png b/docs/contego-light.png similarity index 100% rename from .github/docs/contego-light.png rename to docs/contego-light.png