Skip to content

Commit

Permalink
Merge pull request #2 from Rog3rSm1th/dev/rog3rsm1th
Browse files Browse the repository at this point in the history
Implement PEM encoding/decoding
  • Loading branch information
Rog3rSm1th committed Feb 25, 2024
2 parents 725899b + 278de03 commit b5ea258
Show file tree
Hide file tree
Showing 25 changed files with 740 additions and 535 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
run: cargo build --manifest-path=./okamoto-uchiyama-rs/Cargo.toml --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test --manifest-path=./okamoto-uchiyama-rs/Cargo.toml --verbose
18 changes: 17 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
/target
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

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

# .rlib files
**/*.rlib

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
Loading

0 comments on commit b5ea258

Please sign in to comment.