Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
louib committed Dec 31, 2023
0 parents commit 5d05006
Show file tree
Hide file tree
Showing 14 changed files with 1,597 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[build]
rustflags = "-C target-cpu=native"

[profile.dev]
# Enable all optimizations even in debug mode, otherwise AES key derivation
# is too slow
opt-level = 3
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @louib
21 changes: 21 additions & 0 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Merge on Main

on:
push:
branches:
- main

jobs:
build:
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: run cargo build
run: cargo build
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Cargo
# will have compiled files and executables
/target/

# nix build result
result

# These are backup files generated by rustfmt
**/*.rs.bk


# Added by cargo

/target
Loading

0 comments on commit 5d05006

Please sign in to comment.