Skip to content

Commit

Permalink
release: publish affinidi messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
maratsh committed Sep 9, 2024
1 parent 55edac5 commit 7e333f7
Show file tree
Hide file tree
Showing 285 changed files with 59,603 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/on-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: on-push

on:
push:
branches:
- main
pull_request_target:
types:
- opened
- synchronize

jobs:
rust-workflow:
uses: affinidi/pipeline-rust/.github/workflows/on-push.yaml@main
secrets: inherit
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/target
dump.rdb
.DS_Store
/**/secrets.json-generated
/**/secrets.json
82 changes: 82 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'didcomm-mediator'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=didcomm-mediator"
],
"filter": {
"name": "didcomm-mediator",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'didcomm-mediator'",
"cargo": {
"args": [
"build",
"--bin=didcomm-mediator",
"--package=didcomm-mediator"
],
"filter": {
"name": "didcomm-mediator",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'didcomm-mediator'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=didcomm-mediator",
"--package=didcomm-mediator"
],
"filter": {
"name": "didcomm-mediator",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug basic example in library 'didcomm-mediator'",
"cargo": {
"args": [
"build",
"--package=didcomm-mediator",
"--example=basic"
],
"filter": {
"name": "didcomm-mediator",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
]
}
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"rust-analyzer.linkedProjects": [
"./Cargo.toml",
"./Cargo.toml",
"./Cargo.toml",
"./Cargo.toml",
"./Cargo.toml"
],
"rust-analyzer.showUnlinkedFileNotification": false,
"cSpell.words": [
"didcomm",
"dids",
"DIDURL",
"HGET",
"HLEN"
]
}
Loading

0 comments on commit 7e333f7

Please sign in to comment.