Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

foundation #1

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "keri-acdc"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = { version = "~1", features = ["backtrace"] }
boon = "~0.5"
cesride = { git = "https://github.com/jasoncolburne/cesride", rev = "b1186c0" }
chrono = { version = "~0.4", default-features = false, features = ["clock"] }
parking_lot = "~0.12"
parside = { git = "https://github.com/jasoncolburne/parside", rev = "5076660" }
serde = "~1"
serde_json = "~1"
thiserror = "~1"
zeroize = "~1"
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
# keri-acdc
# keri-acdc

Some basic KERI/ACDC code. It provides a slice of functionality that
[Qui](https://github.com/qui-identity) finds useful.

Features:
- Partial (Custodial) Rotation
- Fully-Compacted ACDCs
- Nested Partial Disclosure

The example code doesn't include any edges, but the source/edges code should work (we use it at
`Qui`).

The data store included in the example code is pretty basic and not performant. It's only there
to provide glue code for the example to work.
Loading