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

Main implementation #1

Merged
merged 19 commits into from
Nov 28, 2023
Merged
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
debug/
target/
.idea/
.vscode/

Cargo.lock

**/*.rs.bk

*.pdb

/target
/Cargo.lock
24 changes: 24 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
PhilippGackstatter marked this conversation as resolved.
Show resolved Hide resolved
name = "sd-jwt"
version = "0.1.0"
edition = "2021"
authors = ["IOTA Stiftung"]
homepage = "https://www.iota.org"
license = "Apache-2.0"

[dependencies]
multibase = { version = "0.9", default-features = false, features = ["std"] }
serde_json = { version = "1.0", default-features = false, features = ["std" ] }
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }
thiserror = { version = "1.0", default-features = false }
strum = { version = "0.25", default-features = false, features = ["std", "derive"] }
itertools = { version = "0.11", default-features = false, features = ["use_std"] }
iota-crypto = { version = "0.23", default-features = false, features = ["std", "sha"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }

[dev-dependencies]
josekit = "0.8.4"

[[example]]
name = "sd_jwt"