Skip to content

Commit

Permalink
Merge pull request #1 from nodecross/cgt-424
Browse files Browse the repository at this point in the history
[CGT-424]Add encryption using did for json
  • Loading branch information
da13da authored Jan 26, 2024
2 parents 0cfe724 + d05d84d commit f63322a
Show file tree
Hide file tree
Showing 39 changed files with 8,123 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: tests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests default
run: cargo test --verbose
- name: Run tests
run: cargo test
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/

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

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

.DS_Store
**/.vscode/
Loading

0 comments on commit f63322a

Please sign in to comment.