Skip to content

Commit

Permalink
Merge pull request #1 from InfraBlockchain/develop
Browse files Browse the repository at this point in the history
merge to master
  • Loading branch information
sweatpotato13 authored Apr 16, 2024
2 parents 0cbf1a6 + 5f93ed0 commit b35c7f1
Show file tree
Hide file tree
Showing 20 changed files with 1,772 additions and 450 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cargo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on: [push]

name: CI

jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo build --release
- run: cargo test
28 changes: 21 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
[package]
name = "example-rs"
name = "infra-did"
version = "0.1.0"
authors = ["Brick Pop <itsbrickpop@gmail.com>"]
edition = "2018"

[lib]
name = "example"
crate-type = ["staticlib", "cdylib"]
authors = ["InfraBlockchain"]
edition = "2021"

[dependencies]
hex = "0.4.3"
Expand All @@ -23,3 +19,21 @@ blake2-rfc = "0.2.18"
rustc-hex = "2.0.1"
ed25519-dalek = "1.0.1"
bs58 = "0.4.0"
rand = "0.7.0"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0.40"
iref = { version = "2.2.2", features = ["serde"] }
static-iref = "2.0.0"
multibase = "0.9.1"
ssi-vc = "0.2.1"
ssi = "0.7.0"
ssi-json-ld = "0.2.2"
ssi-ldp = "0.3.2"
base64 = "0.12.3"
ssi-jws = "0.1.1"
ssi-dids = { version = "0.1.1", features = ["example"] }
async-std = { version = "1.9", features = ["attributes"] }
async-trait = "0.1.68"
serde_urlencoded = "0.7.1"
percent-encoding = "2.2.0"
anyhow = "1.0.70"
129 changes: 0 additions & 129 deletions Makefile

This file was deleted.

Loading

0 comments on commit b35c7f1

Please # to comment.